-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
106 lines (89 loc) · 3.42 KB
/
settings.html
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./assets/semantic-ui/semantic.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/login.css">
<title>AnimeHub - Settings</title>
</head>
<body>
<nav>
<div id="content">
<div class="trademark">
<img src=".\assets\images\logo2.svg" alt="">
<p>Anime<span>Hub</span></p>
</div>
<button class="ui button right floated orange">
Login
</button>
<div class="ui inverted left icon input right">
<input placeholder="Search..." type="text">
<i class="search icon"></i>
</div>
</div>
</nav>
<div id="content2">
<!-- LOGIN TAB -->
<div class="column center-screen back">
<div class="ui form">
<h4 class="ui dividing header">Change E-mail or username</h4>
<div class="field">
<label>E-mail</label>
<div class="ui left icon input">
<input placeholder="E-mail or username" type="text" value="[email protected]">
<i class="user icon"></i>
</div>
</div>
<div class="field error">
<label>Username</label>
<div class="ui left icon input">
<input placeholder="Username" type="text" value="Lipeteste">
<i class="user icon"></i>
</div>
</div>
<div class="ui orange submit fluid button">Save changes</div>
<h4 class="ui dividing header">Change password</h4>
<div class="field disabled">
<label>Password</label>
<div class="ui left icon input">
<input placeholder="Password" type="password" value="61872362">
<i class="lock icon"></i>
</div>
</div>
<div class="field">
<label>New Password</label>
<div class="ui left icon input">
<input placeholder="Password" type="password">
<i class="lock icon"></i>
</div>
</div>
<div class="field">
<label>Retype your new password</label>
<div class="ui left icon input">
<input placeholder="Password" type="password">
<i class="lock icon"></i>
</div>
</div>
<div class="ui orange submit fluid button">Save new password</div>
</div>
</div>
</div>
<div class="login-background">
<img src="https://orig00.deviantart.net/aadd/f/2017/050/3/1/uzumaki_naruto__naruto__minimalist_wallpaper_by_darkfate1720-dazp6if.png">
</div>
<footer>
<div id="content">
<p>Disclaimer: AnimeHub does not store any files on its server. All contents are provided by non-affiliated third parties. <a href="#">Read more</a></p>
<div class="social-tags right">
<div class="store" data-tooltip="Visit our oficial store!" data-position="top center" data-inverted=""><i class="shopping bag icon grey"></i></div>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="./assets/semantic-ui/semantic.js"></script>
<script type="text/javascript" src="./assets/js/global.js"></script>
<script type="text/javascript" src="./assets/js/login.js"></script>
</body>
</html>