-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 1.34 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>User Management</title>
<link href='http://fonts.googleapis.com/css?family=Cabin' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="general_reset.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>Registration
</header>
<div class = "page-container">
<h4>
Enter Here!
</h4>
<main class="main-content">
<form class='user-form'>
<p>
First Name
</p>
<input type="text" class="userInfo" id = "firstName">
<p>
Last Name
</p>
<input type="text" class="userInfo" id = "lastName">
<p>
Email
</p>
<input type="text" class="userInfo" id="eMail">
</form>
<button class ="submit">Submit</button>
</main>
<div class = "output-container">
<p>
Registered Users
</p>
<ul class = "output">
</ul>
</div>
</div>
<footer>
</footer>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/app.js"></script>
<script src="js/userCreate.js"></script>
<script src="js/addRemoveLoadSave.js"></script>
<script src="js/events.js"></script>
<script src="js/render-user.js"></script>
</body>
</html>