-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewAccount.html
63 lines (51 loc) · 2.66 KB
/
newAccount.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="HTML,CSS,JavaScript,Software,Developer,Muhammad,Hammad,mhnaeem,gradeulator,mun,cs,Java,Python">
<meta name="author" content="Muhammad Hammad">
<title>New Account</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container mb-3 mt-3">
<h1>Create a New Account</h1>
</div>
<div class="container mt-5">
<form>
<div class="form-row">
<div class="form-group col-md-6">
<label for="firstName">First Name</label>
<input type="text" class="form-control" id="firstName" placeholder="First Name">
</div>
<div class="form-group col-md-6">
<label for="lastName">Last Name</label>
<input type="text" class="form-control" id="lastName" placeholder="Last Name">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="emailAddress">Email</label>
<input type="email" class="form-control" id="emailAddress" placeholder="Email">
</div>
<div class="form-group col-md-6">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="Password">
</div>
</div>
<div class="form-group">
<label for="university">University</label>
<input type="text" class="form-control" id="university" placeholder="Memorial University of Newfoundland">
</div>
<div class="form-group">
<label for="academicMajor">Academic Major</label>
<input type="text" class="form-control" id="academicMajor" placeholder="Computer Science">
</div>
<button type="submit" class="btn btn-lg btn-primary mt-5 mb-5">Sign in</button>
<a href="./index.html"><button type="button" class="btn btn-lg btn-danger mt-5 mb-5">Cancel</button></a>
</form>
</div>
</body>
</html>