-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathnames.html
29 lines (23 loc) · 874 Bytes
/
names.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>Address Book</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body class="container">
<h1>Address Book</h1>
<p class="alert alert-danger" id="error-message"></p>
<div class="form-group">
<label for="first-name">First Name</label>
<input type="text" id="first-name" class="form-control" placeholder="First Name"/>
</div>
<div class="form-group">
<label for="last-name">Last Name</label>
<input type="text" id="last-name" class="form-control" placeholder="Last Name"/>
</div>
<p><button class="btn btn-primary" id="add-name-button">Add</button></p>
<ul id="people-list"></ul>
<script src="js/names.js"></script>
</body>
</html>