Initial layout of the options page.
Now that login keys persist, the options can be put on a separate page. An as-yet nonfunctional layout for options.html has been added.
This commit is contained in:
parent
16e66858c0
commit
0f71a90f8b
3 changed files with 31 additions and 0 deletions
23
options.html
Normal file
23
options.html
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>RLG-Web Options</title>
|
||||||
|
<script type="text/javascript" src="options.js"></script>
|
||||||
|
<link rel="stylesheet" type="text/css" href="style-rlg.css">
|
||||||
|
</head>
|
||||||
|
<body onload="setup()" onkeydown="sendkey(event)">
|
||||||
|
<h1>RLG-Web Options</h1>
|
||||||
|
<div id="switch">
|
||||||
|
<span class="ibutton">E-mail</span>
|
||||||
|
<span class="ibutton">Password</span>
|
||||||
|
</div>
|
||||||
|
<div class="formtable" id="o_email">
|
||||||
|
<div><div>E-mail:</div><div><input type="text" name="email" id="input_email"></div></div>
|
||||||
|
<div><div><span class="ibutton">Save</span></div><div><span class="ibutton">Cancel</span></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="formtable" id="o_pw">
|
||||||
|
<div><div>Password:</div><div><input type="password" name="pw" id="input_pw"></div></div>
|
||||||
|
<div><div><span class="ibutton">Save</span></div><div><span class="ibutton">Cancel</span></div></div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
1
options.js
Normal file
1
options.js
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
/* Nothing here yet. */
|
||||||
|
|
@ -104,3 +104,10 @@ div#messages > div.warn {
|
||||||
div#debug {
|
div#debug {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For options.html */
|
||||||
|
div#switch {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
padding: 0.4em 0.4em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue