-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexEditAppointment.html
76 lines (61 loc) · 2.33 KB
/
indexEditAppointment.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
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/octicons/octicons.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<title>My Tee Time App</title>
</head>
<body>
<div class="appt-container">
<div class="column-mobile">
<header>
<a href="indexAppointmentStats.html"><i class="back-arrow fa fa-chevron-left fa-3x"></i>
</a>
<span class="page-title">Edit Tee Time</span>
</header>
<div class="modal-container">
<div class="modal">
<div class="modal-prompt">Are you sure?</div>
<a href = "index.html">
<button class="modal-button modal-yes">YES</button>
</a>
<a href = "index.html">
<button class="modal-button modal-no">NO</button>
</a>
</div>
</div>
<div class="title-page-2">
<label>Title</label>
<input class="edit-input-title" placeholder="Meet with Larry">
</div>
<div class="address-page-2">
<label>Street</label>
<input class="edit-input-address" placeholder="111 Lucky Drive">
<i class="fa fa-map-marker fa-3x"></i>
<label>City, State</label>
<input class="edit-input-city" placeholder="Durham, NC">
</div>
<div class="date-page-2">
<label>Date</label>
<input class="edit-input-date" placeholder="09/01/2015">
<i class="fa fa-calendar fa-3x"></i>
</div>
<div class="time-page-2">
<label>Time</label>
<input class="edit-input-time" placeholder="15:15:00">
<i class="fa fa-clock-o fa-3x"></i>
</div>
<div class="button-container">
<button class="delete-button">Delete
<a href = "index.html">
<button class="save-edit-button">Save
</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.5.1/lodash.js"></script>
<script src="assets/js/index.js"></script>
</body>
</html>