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-changed.html
More file actions
107 lines (85 loc) · 4.63 KB
/
edit-changed.html
File metadata and controls
107 lines (85 loc) · 4.63 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
<!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__block">
<label class="form__label">
First Name
<input type="text" class="form__text-input" />
</label>
</div>
<div class="edit-profile__block">
<label class="form__label">
Last Name
<input type="text" class="form__text-input" />
</label>
</div>
<div class="edit-profile__block edit-profile__block--button">
<input type="submit" class="form__submit form__submit--button" value="Save" />
</div>
</div>
<div class="edit-profile__wrap">
<div class="edit-profile__sub-title">Change email</div>
<div class="edit-profile__desc">Your email successfully changed to <b>morgannew@gmail.com</b></div>
<div class="edit-profile__block">
<label data-error="Wrong email" class="form__label"> <!-- TODO: to output error add class `form__label--error` -->
<input placeholder="Current password" type="text" class="form__text-input" /> <!-- TODO: to output error add class `form__text-input--error` -->
</label>
</div>
<div class="edit-profile__block">
<label data-error="Passwords don’t match." class="form__label">
<input placeholder="New email" type="password" class="form__text-input" />
</label>
</div>
<div class="edit-profile__block edit-profile__block--button-no-padding">
<input type="submit" class="form__submit form__submit--button form__submit--done" value="Done!" />
</div>
</div>
<div class="edit-profile__wrap">
<div class="edit-profile__sub-title">Change password</div>
<div class="edit-profile__block edit-profile__block--full">
<label class="form__label">
<input placeholder="Current password" type="password" class="form__text-input" />
</label>
</div>
<div class="edit-profile__block">
<label data-error="Wrong email" class="form__label"> <!-- TODO: to output error add class `form__label--error` -->
<input placeholder="New password" type="text" class="form__text-input" /> <!-- TODO: to output error add class `form__text-input--error` -->
<div class="form__label-info">not less than 6 characters</div>
</label>
</div>
<div class="edit-profile__block">
<label data-error="Passwords don’t match." class="form__label">
<input placeholder="Confirm password" type="password" class="form__text-input" />
</label>
</div>
<div class="edit-profile__block edit-profile__block--button-no-padding">
<input type="submit" class="form__submit form__submit--button form__submit--disabled" value="Change" />
</div>
</div>
</form>
</div>
</div>
</div><!-- content -->
</div><!-- wrapper -->
<script src="js/script.js"></script>
</body>
</html>