-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
29 lines (25 loc) · 1.12 KB
/
signup.html
File metadata and controls
29 lines (25 loc) · 1.12 KB
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
<html>
<head>
<script type="text/javascript" src="js/md5.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<link href="css/signup.css" rel="stylesheet">
<link href="css/boat.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body>
<h1 id="title">Welcome New User!</h1>
<div class="boat"></div>
<div id="signUpDiv">
<span id="inner-title">Please enter the information below to sign up:</span>
<span id="signUpResult"></span>
<br />
<input type="text" id="signUpFirstName" placeholder="First Name" /><br />
<input type="text" id="signUpLastName" placeholder="Last Name" /><br />
<input type="text" id="signUpName" placeholder="Username" /><br />
<input type="password" id="signUpPassword" placeholder="Password"/><br />
<input type="password" id="confirmPassword" placeholder="Confirm Password"/><br />
<button type="button" id="signUpButton" class="buttons" onclick="doSignUp();">Sign Up</button>
<button type="button" id="loginButton" class="buttons" onclick="window.location.href = 'index.html'"> Login </button>
</div>
</body>
</html>