-
Notifications
You must be signed in to change notification settings - Fork 1
/
createAccount.html
40 lines (35 loc) · 982 Bytes
/
createAccount.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<!--
Written by Bud Linville and Weston Hack
Tested by Bud Linville and Weston Hack
Debugged by Ben Conner
5/1/17
Page to create user account
-->
<head>
<title>Create Account</title>
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="static/toolbar.js"></script>
<link rel="stylesheet" type="text/css" href="static/main.css" />
</head>
<body>
<div id="header"></div>
<div class="roundrect">
<h1> Create your account! </h1>
<!-- Form to create account -->
<form action="createUsers.php" method="post">
<table>
<tr> <td>Username:</td><td><input type="text" name="username"></td>
<tr> <td>Password:</td><td><input type="password" name="password"></td>
<tr> <td>Email:</td><td><input type="email" name="email"></td>
<tr> <td>Phone:</td><td><input type="tel" name="phone"></td>
</table>
<br>
<div>
<input type="submit" value="Create Account!"/>
</div>
</div>
</form>
</body>
</html>