This repository was archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.html
More file actions
61 lines (46 loc) · 1.99 KB
/
edit.html
File metadata and controls
61 lines (46 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Lipsync Beta</title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="wrapper">
<div class="header header--inner">
<div class="container">
<a href="/" class="logo-mini"></a>
<a href="#" class="header__back">TO PROFILE</a>
</div>
</div><!-- header -->
<div class="content">
<div class="container">
<div class="edit-profile">
<div class="edit-profile__title">Edit profile</div>
<form class="form">
<div class="edit-profile__wrap">
<div class="edit-profile__change">
<span class="edit-profile__change-text">Keith Morgan</span>
<a data-link="_edit-name.html" href="javascript:void(0);" class="edit-profile__change-link js-open-popup">Change name</a>
</div>
</div>
<div class="edit-profile__wrap">
<div class="edit-profile__change">
<span class="edit-profile__change-text">keith@gmail.com</span>
<a data-link="_edit-email.html" href="javascript:void(0);" class="edit-profile__change-link js-open-popup">Change email</a>
</div>
</div>
<div class="edit-profile__wrap">
<div class="edit-profile__change">
<a data-link="_edit-pass.html" href="javascript:void(0);" class="edit-profile__change-link js-open-popup">Change password</a>
</div>
</div>
</form>
</div>
</div>
</div><!-- content -->
</div><!-- wrapper -->
<script src="js/script.js"></script>
</body>
</html>