view options.html @ 143:f1676e81c80a

sqlickrypt: add support for salted SHA-512 passwords, and fix NULL bug. Passwords will now be securely encrypted with random salt. Also avoid storing NULL in the database, because that makes dgamelaunch segfault.
author John "Elwin" Edwards
date Sun, 20 Oct 2013 21:19:13 -0700
parents 99fbc7c55b81
children
line wrap: on
line source

<!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()">
<h1>RLG-Web Options</h1>
<div id="ostat">Loading...</div>
<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" onclick="postemail()">Save</span></div><div><span class="ibutton" style="display:none">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" onclick="postpw()">Save</span></div><div><span class="ibutton" style="display:none">Cancel</span></div></div>
</div>
<div id="optfoot"><a href="/">Home</a></div>
</body>
</html>