Skip to content

Instantly share code, notes, and snippets.

@jayd3e
Forked from anonymous/gist:4150934
Created November 26, 2012 22:02
Show Gist options
  • Save jayd3e/4150946 to your computer and use it in GitHub Desktop.
Save jayd3e/4150946 to your computer and use it in GitHub Desktop.
so far?
<!-- Sign Up HTML: should take in user info and store to user table -->
<html>
<head>
<link rel="stylesheet" type="text/css" href="/style/mystyle.css"/>
<title>New Users!</title>
</head>
<body id="body">
<div id="header">
<h1 id="title"> clusterForum: Sign Up! </h1>
</div>
<div id="navigation">
<li id="li_index">
<FORM METHOD="LINK" ACTION="/">
<INPUT TYPE="submit" VALUE="Home"></li>
</div>
<div id="content">
<p>
<b> clusterForum </b> is an online forum for general purposes. <br>
Sign Up is free and your information is kept conifdential. <br>
Remember to checkout the real deal @clusterflunk.com!
</p>
<form method="POST" action="/signup" style="text-align:center">
<table border=1px id="signup_form">
<tr>
<td>
<label for="username">username
<input name="username" type="text"/></label>
</td>
</tr>
<tr>
<td><label for="password">password
<input name="password" type="password"/></label></td>
</tr>
<tr>
<td><label for="email">email
<input name="email" type="text"/></label></td>
</tr>
<tr>
<td><label for="age">age
<input name="age" type="text"/></label></td>
</tr>
<tr>
<td><input name="submit" type="submit" value="Submit"/></td>
</tr>
</table>
</form>
<p style="text-align:left;"> * indicates required fields </p>
</div>
<div id="footer">
<p> This is a forum created for practice purposes. Credit: ClusterFlunk development team. Nov.1 -Nov.28 2012 </p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment