This repository has been 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
/
contacts.html
61 lines (58 loc) · 2.57 KB
/
contacts.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Contacts | 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/class.js"></script>
<script src="/template/scripts/base.js"></script>
<script src="/template/scripts/assignment.js"></script>
<script src="/template/scripts/user.js"></script>
<script src="/template/scripts/contacts.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 app-current" onclick="showModule('contacts');">Contacts</span>
<span class="app" onclick="showModule('settings');">Settings</span>
</p>
</div>
<div id="contacts" style="background-color: #edeff1;">
<div id="contacts-settings" class="card">
<h2 class="">Change Contact and Personal Information</h2>
<div>You can write anything here, including contact info or even steam trade url.</div>
<div class="">
<textarea class="input-text" type="text" id="change-personal-info" placeholder="What's special about you?" style="height:150px"></textarea>
<label class="" for="change-personal-info">What's special about you?</label>
</div>
<div class="button">
<a class="a-button" onclick="changeInfo()">Change Personal Info</a>
</div>
</div>
<div id="contactsList" class="contacts-content" style="background-color: #edeff1;"></div>
</div>
</body>
<script>
loadInfo();
loadAllPersonalInfo();
</script>
</html>