-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsignup.hbs
34 lines (31 loc) · 1.48 KB
/
signup.hbs
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
<!DOCTYPE html>
<html>
<head>
<title> Sign Up </title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="/js/validator.min.js" type="text/javascript"></script>
<script src="/js/signup.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/form.css">
</head>
<body>
{{> header flag=flag name=name uidNum=uidNum}}
<div id="container">
<div id="content">
<h1 id="title"> Sign Up. </h1>
<form id="signup" method="post">
<input type="text" name="fName" id="fName" class="field" placeholder="First Name" required> <br>
<p id="fNameError" class="error">{{fNameError}}</p>
<input type="text" name="lName" id="lName" class="field" placeholder="Last Name" required> <br>
<p id="lNameError" class="error">{{lNameError}}</p>
<input type="number" name="idNum" id="idNum" class="field" placeholder="Id Number" required> <br>
<p id="idNumError" class="error">{{idNumError}}</p>
<input type="password" name="pw" id="pw" class="field" placeholder="Password" required> <br>
<p id="pwError" class="error">{{pwError}}</p>
<input type="submit" id="submit" value="SUBMIT" disabled>
</form>
</div>
</div>
</body>
</html>