blob: ab9e4f1bfa426d7d74f7d4180dd20be03ce78220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<div id="login-container">
<div class="topnav"><a href="login" class="signin"><span>Sign in</span></a> </div>
<fieldset id="signin_menu">
<form onsubmit="return false">
<br>
<input id="nickInput" name="nickInput" title="username" tabindex="4" type="text">
<p>
<input id="passwordInputLabel" name="passwordInputLabel" tabindex="5" type="text" class="invisible">
<input id="passwordInput" name="passwordInput" title="password" tabindex="5" type="password">
</p>
<p class="remember"><br>
<input id="signin-submit" value="Sign in" tabindex="6" type="submit">
<br><br>
<label>
<input type="checkbox" name="rememberme" id="remembermeInput" checked="checked"/>
Remember Me
</label>
<br> </p> </form>
<span id="pwreset">
<a href="http://dump.fm/reset">Password Reset</a>
</span>
</fieldset>
</div>
<script src="/static/js/home.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(initExpandableLoginForm)
</script>
|