This repository was archived by the owner on Aug 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit-profile.html
More file actions
109 lines (109 loc) · 4.05 KB
/
edit-profile.html
File metadata and controls
109 lines (109 loc) · 4.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Detail | Instaclone</title>
<meta charset="UTF-8">
<meta description="Instaclone login page">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
</head>
<body>
<nav class="navigation">
<div class="navigation__colummn">
<a href="feed.html">
<img src="images/logo.png">
</a>
</div>
<div class="navigation__colummn">
<i class="fa fa-search"></i>
<input type="text" placeholder="Search">
</div>
<div class="navigation__colummn">
<a href="explore.html" class="navigation__link">
<i class="fa fa-compass"></i>
</a>
<a href="#" class="navigation__link">
<i class="fa fa-heart-o"></i>
</a>
<a href="profile.html" class="navigation__link">
<i class="fa fa-user-o"></i>
</a>
</div>
</nav>
<main class="edit__profile">
<article class="edit-profile">
<div class="edit-profile__row">
<img src="images/guy.jpg" alt="guy" class="edit-profile__avatar">
<h2 class="edit-profile__username">Yeodal</h2>
</div>
<form>
<div class="edit-profile__row">
<label for="Name">Name</label>
<input type="text" id="Name" value="Yeodal Yoon">
</div>
<div class="edit-profile__row">
<label for="Username">Username</label>
<input type="text" id="Username" value="serranoarevalo">
</div>
<div class="edit-profile__row">
<label for="Website">Website</label>
<input type="text" id="Website" value="http://serranoarevalo.com">
</div>
<div class="edit-profile__row">
<label for="Bio">Bio</label>
<textarea id="bio"></textarea>
</div>
<div class="edit-profile__row">
<label for="Email">Email</label>
<input type="email" id="Email" value="yeodal89@gmail.com">
</div>
<div class="edit-profile__row">
<label for="Phone">Phone Number</label>
<input type="email" id="Phone" value="+82 10-5162-9517">
</div>
<div class="edit-profile__row">
<label for="Gender">Gender</label>
<select id="Gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="whatever">Whatever</option>
</select>
</div>
<div class="edit-profile__guide">
<span>Simillar Account Suggestions</span>
<input type="checkbox" id="similar" checked>
<label for="similar">Include your account when recommending similar accounts people might want to follow. <a href="#">[?]</a></label>
</div>
<div class="edit-profile__row">
<label></label>
<input type="submit" value="Submit">
</div>
</form>
</article>
</main>
<footer>
<nav class="footer_nav">
<ul class="footer__list">
<li class="footer__item"><a href="#" class="footer__link">about us</a></li>
<li class="footer__item"><a href="#" class="footer__link">support</a></li>
<li class="footer__item"><a href="#" class="footer__link">blog</a></li>
<li class="footer__item"><a href="#" class="footer__link">press</a></li>
<li class="footer__item"><a href="#" class="footer__link">api</a></li>
<li class="footer__item"><a href="#" class="footer__link">jobs</a></li>
<li class="footer__item"><a href="#" class="footer__link">privacy</a></li>
<li class="footer__item"><a href="#" class="footer__link">terms</a></li>
<li class="footer__item"><a href="#" class="footer__link">directory</a></li>
<li class="footer__item"><a href="#" class="footer__link">language</a></li>
</ul>
</nav>
<span class="footer__copyright">© 2017 instagram</span>
</footer>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="js/app.js"></script>
</body>
</html>