-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddContact.html
32 lines (28 loc) · 1.2 KB
/
addContact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Add Contact</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="contacts.css">
</head>
<body>
<div class="container">
<div class="col-md-offset-2 col-md-4 clearfix">
<h2>Add a New Contact</h2>
<form class="form-group form-auth">
<label for="firstName">First Name:</label>
<input type="text" class="form-control" id="firstName" placeholder="First Name"/>
<label for="lastName">Last Name:</label>
<input type="text" class="form-control" id="lastName" placeholder="Last Name"/>
<label for="emailAddress">Email Address:</label>
<input type="email" class="form-control" id="emailAddress" placeholder="[email protected]"/>
<label for="phoneNumber">Phone Number:</label>
<input type="phone" class="form-control" id="phoneNumber" placeholder="Phone Number"/>
<button type="button" class="btn btn-primary btn-lg pull-right" id="addButton">Add</button>
</form>
</div>
</div>
<script type="text/javascript" src="contacts.js"></script>
</body>
</html>