-
Notifications
You must be signed in to change notification settings - Fork 1
/
SignUp.html
executable file
·29 lines (29 loc) · 1.16 KB
/
SignUp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="SignUp.css" type="text/css"/>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="http://www.parsecdn.com/js/parse-1.5.0.min.js"></script>
<script src=ParseInit.js></script>
<script src="SignUp.js"></script>
</head>
<body>
<div class="container">
<div id="signup">
<div class="header">
<h3>Sign Up</h3>
<p>Please fill out all the details in this form</p>
</div>
<div class="sep"></div>
<div class="inputs">
<input id="username" type="text" placeholder="User Name" autofocus />
<input id="password" type="password" placeholder="Password" />
<input id="monthly_budget" type="text" placeholder="Monthly Budget Amount:"/>
</div>
<button id="signUpButton">Sign Up</button>
</div>
</div>
</body>
</html>