Skip to content

Instantly share code, notes, and snippets.

@TinkerWorX
Created May 11, 2012 19:39
Show Gist options
  • Save TinkerWorX/2661974 to your computer and use it in GitHub Desktop.
Save TinkerWorX/2661974 to your computer and use it in GitHub Desktop.
Sample login test page
<html>
<head>
<title></title>
</head>
<body>
<div align="center">
<form id='login' action="login.xna" method='get' accept-charset='UTF-8' style="width:300px;">
<fieldset>
<legend>Login</legend>
<label for='username'>Username:</label>
<input type='text' name='username' id='username' maxlength="50" />
<label for='password'>Password:</label>
<input type='password' name='password' id='password' maxlength="50" />
<input type='submit' name='Submit' value='Login' />
</fieldset>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment