-
Notifications
You must be signed in to change notification settings - Fork 0
/
createContact.html
46 lines (38 loc) · 1.31 KB
/
createContact.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Create Contact</title>
<link rel="stylesheet" href="lib/bootswatch/bootstrap.min.css"/>
<link rel="stylesheet" href="css/site.css"/>
</head>
<body>
<div class="container">
<form class="form-horizontal">
<div class="form-group">
<label for="inputFirstName" class="col-sm-2 control-label">First Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputFirstName"/>
</div>
</div>
<div class="form-group">
<label for="inputLastName" class="col-sm-2 control-label">Last Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputLastName"/>
</div>
</div>
<div class="form-group">
<label for="inputPhone" class="col-sm-2 control-label">Phone</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputPhone"/>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Create Contact</button>
</div>
</div>
</form>
</div>
</body>
</html>