This repository was archived by the owner on Dec 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
95 lines (91 loc) · 3.71 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Settings | SAM by Computerization</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/framework/geodesic/base.css" type="text/css">
<link rel="stylesheet" href="/framework/geodesic/settings.css" type="text/css">
<link rel="stylesheet" href="/framework/sam/main.css" type="text/css">
<link rel="stylesheet" href="/framework/sam/banner.css" type="text/css">
<script src="/framework/js/jq.js"></script>
<script src="/framework/js/form.js"></script>
<script src="/framework/js/masonry.js"></script>
<script src="/template/scripts/settings.js"></script>
<script src="/template/scripts/user.js"></script>
<script>
function showModule(id) {
window.location.href = "/" + id +'.html';
}
</script>
</head>
<body>
<div class="banner-pc banner-mobile">
<p id="left-banner">
<img src="/framework/sam/SAM_logo.svg" />
<span><lead>S</lead>AM</span>
</p>
<img id="avatar" src="/framework/material-images/user.png" height="40px">
<p id="right-banner">
<span class="app" onclick="showModule('dashboard');">Dashboard</span>
<span class="app" onclick="showModule('club');">Club</span>
<span class="app" onclick="showModule('classes');">Classes</span>
<span class="app" onclick="showModule('contacts');">Contacts</span>
<span class="app app-current" onclick="showModule('settings');">Settings</span>
</p>
</div>
<div id="settings">
<div class="">
<h2 class="">Change Email</h2>
<div>
Set up your own email address. <br />
You need your email address to receive your reset password email confirmation.
</div>
<div class="">
<input class="input-text" type="email" id="newEmail" placeholder="Your new email"/>
<label class="input-text" for="newEmail"></label>
</div>
<div class="button">
<a class="a-button" onclick="changeEmail()">
Change Email
</a>
</div>
</div>
<div class="">
<h2 class="">Change Password</h2>
<div>Please set up a strong password for yourself.</div>
<div class="">
<input class="input-text" type="password" id="oldPass" placeholder="Old Password"/>
<label class="" for="oldPass">Old Password</label>
</div>
<div class="">
<input class="input-text" type="password" id="newPass1" placeholder="Your new password"/>
<label class="" for="newPass1">Your new password</label>
</div>
<div class="">
<input class="input-text" type="password" id="newPass2" placeholder="Retype your new password"/>
<label class="" for="newPass2">Retype your new password</label>
</div>
<div class="button">
<a class="a-button" onclick="changePassword()">
Change Password
</a>
</div>
</div>
<div class="">
<h2 class="c">More</h2>
<div class="">Computerization Proudly Present</div>
<div class="">Version 17.04.01</div>
<div class="button">
<a class="a-button" onclick="signOut()">
Sign Out
</a>
</div>
<div class="button">
<a class="a-button" onclick="window.location='mailto:[email protected]'">
Bug Report
</a>
</div>
</div>
</div>
</body>
</html>