-
Notifications
You must be signed in to change notification settings - Fork 1
/
EditContact.html
38 lines (34 loc) · 1.16 KB
/
EditContact.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
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body onload = "readCookie()">
<title>EDIT CONTACT</title>
<script type="text/javascript" src="js/md5.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<script type="text/javascript" src="js/signup.js"></script>
<link href="css/style.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Ubuntu"
rel="stylesheet"
/>
</head>
<body>
<h1 id>EDIT CONTACT</h1>
<span id="label">First Name:</span>
<input type="text" id="firstname" placeholder="First Name" /><br />
<span id="label">Last Name:</span>
<input type="text" id="lastname" placeholder="Last Name" /><br />
<span id="label">Phone Number:</span>
<input type="text" id="firstname" placeholder="Phone Number" /><br />
<span id="label">Email Address:</span>
<input type="text" id="firstname" placeholder="Email Address" /><br />
<br />
<button type="button" id="button" onclick="editingMethodHere()">
EDIT CONTACT
</button>
<button type = "button" id = "return" onclick = "goDashboard()">Return</button>
</body>
</html>
</body>
</html>