Mercurial > hg > rlgwebd
comparison options.html @ 129:46822bd329da
Make the options page functional.
The options page now uses the /uinfo interface to change e-mail and
password values.
author | John "Elwin" Edwards <elwin@sdf.org> |
---|---|
date | Tue, 28 Aug 2012 17:38:25 -0700 |
parents | bea4e7e703a2 |
children | a2e071a95055 |
comparison
equal
deleted
inserted
replaced
128:bea4e7e703a2 | 129:46822bd329da |
---|---|
3 <head> | 3 <head> |
4 <title>RLG-Web Options</title> | 4 <title>RLG-Web Options</title> |
5 <script type="text/javascript" src="options.js"></script> | 5 <script type="text/javascript" src="options.js"></script> |
6 <link rel="stylesheet" type="text/css" href="style-rlg.css"> | 6 <link rel="stylesheet" type="text/css" href="style-rlg.css"> |
7 </head> | 7 </head> |
8 <body onload="setup()" onkeydown="sendkey(event)"> | 8 <body onload="setup()"> |
9 <h1>RLG-Web Options</h1> | 9 <h1>RLG-Web Options</h1> |
10 <div id="switch"> | 10 <div id="switch"> |
11 <span class="ibutton">E-mail</span> | 11 <span class="ibutton">E-mail</span> |
12 <span class="ibutton">Password</span> | 12 <span class="ibutton">Password</span> |
13 </div> | 13 </div> |
14 <div class="formtable" id="o_email"> | 14 <div class="formtable" id="o_email"> |
15 <div><div>E-mail:</div><div><input type="text" name="email" id="input_email"></div></div> | 15 <div><div>E-mail:</div><div><input type="text" name="email" id="input_email"></div></div> |
16 <div><div><span class="ibutton">Save</span></div><div><span class="ibutton">Cancel</span></div></div> | 16 <div><div><span class="ibutton" onclick="postemail()">Save</span></div><div><span class="ibutton">Cancel</span></div></div> |
17 </div> | 17 </div> |
18 <div class="formtable" id="o_pw"> | 18 <div class="formtable" id="o_pw"> |
19 <div><div>Password:</div><div><input type="password" name="pw" id="input_pw"></div></div> | 19 <div><div>Password:</div><div><input type="password" name="pw" id="input_pw"></div></div> |
20 <div><div><span class="ibutton">Save</span></div><div><span class="ibutton">Cancel</span></div></div> | 20 <div><div><span class="ibutton" onclick="postpw()">Save</span></div><div><span class="ibutton">Cancel</span></div></div> |
21 </div> | 21 </div> |
22 </body> | 22 </body> |
23 </html> | 23 </html> |