-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.html
More file actions
72 lines (64 loc) · 2.69 KB
/
Copy pathedit.html
File metadata and controls
72 lines (64 loc) · 2.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style-edit.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/6b20b1c14d.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edit Contact</title>
</head>
<body>
<div class="container">
<header class="hero">
<a href="contact-profile.html">
<i class="fas fa-arrow-circle-left back-btn"></i>
</a>
<div class="hero-info">
<h1>Joshua Nguwo</h1>
<p class="relationship">Brother</p>
</div>
</header>
<section class="contact-info">
<div class="info-line">
<i class="fas fa-phone icon-gradient"></i>
<input type="text" class="type" name="fullname" placeholder="Full Name">
</div>
<div class="info-line">
<i class="fas fa-sms icon-gradient"></i>
<input type="text" class="type" name="relationship" placeholder="Relationship">
</div>
<div class="info-line">
<i class="fas fa-phone icon-gradient"></i>
<input type="text" class="type" name="phone" placeholder="Phone Number">
</div>
<div class="info-line">
<i class="fas fa-envelope icon-gradient"></i>
<input type="text" class="type" name="email" placeholder="Email">
</div>
<div class="info-line">
<i id="location" class="fas fa-map-marker-alt icon-gradient"></i>
<input type="text" class="type" name="address" placeholder="Address...">
</div>
</section>
<section class="button-container">
<a href="#">
<div class="update-container">
<i class="fas fa-check-circle icon-gradient"></i>
<button class="button"> Save Contact</button>
</div>
</a>
</section>
<section class="button-container">
<a href="delete.html">
<div class="update-container">
<i class="fas fa-trash icon-gradient"></i>
<button class="button">Delete Contact</button>
</div>
</a>
</section>
</body>
</html>