-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmyprofile.html
More file actions
67 lines (60 loc) · 2.09 KB
/
myprofile.html
File metadata and controls
67 lines (60 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Личный кабинет</title>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<header class="container">
<h1>Шапка</h1>
</header>
<main class="container">
<div class="row">
<div class="row">
<div class="input-field col s6">
<input disabled value="vasyapupkin@gmail.com" id="email_disabled" type="text" class="validate">
<label for="email_disabled">Почтовый адрес</label>
</div>
<div class="input-field col s6">
<a class="waves-effect waves-teal btn-flat">Изменить</a>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<input id="new_password" type="password" class="validate">
<label for="new_password">Новый пароль</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<input id="retype_password" type="password" class="validate">
<label for="retype_password">Подтвердите пароль</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<input id="old_password" type="password" class="validate">
<label for="old_password">Ваш текущий пароль</label>
</div>
</div>
<div class="row">
<button class="btn waves-effect waves-light" type="submit" name="action">Подтвердить
<i class="material-icons right">send</i>
</button>
</div>
</div>
</main>
<footer class="container">
Подвал
</footer>
</body>
</html>