-
Notifications
You must be signed in to change notification settings - Fork 1
/
Schedule.html
84 lines (77 loc) · 2.77 KB
/
Schedule.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Schedule</title>
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/schedule.css" />
<script src="js/chat.js"></script>
<script src="js/schedule.js"></script>
</head>
<body>
<div class="top-bar pic-text">
<a class="logo pic-text a-link-style" href="./index.html">Tripp</a>
<div class="double-page-title">
<div class="first-title-line">Panning with
<span class="other-name">[name...] </span>
</div>
<div class="second-title-line">
<a class="title-button-selected pic-text a-link-style" href="./schedule.html">Schedule</a>
|
<a class="title-button-unselected pic-text a-link-style" href="./progress.html">Progress</a>
</div>
</div>
<div class="user-info-container">
<a class="nav-text pic-text a-link-style opaque my-name" href="./profile.html">Tourist</a>
<div class="profile-pic-container">
<a href="./profile.html">
<img class="profile-pic" src="image/empty_profile_pic.png" alt=""/>
</a>
</div>
</div>
</div>
<div id="main-frame">
<div class="add-task-panel">
<form style="height: 100%" id="add-form" onsubmit="return false; ">
<input type="text" class="add-input-title" placeholder="Title..." onfocus="this.placeholder = ''"
onblur="this.placeholder = 'Title...'">
<textarea type="text" class="add-input-content" placeholder="Content..." onfocus="this.placeholder = ''"
onblur="this.placeholder = 'Content...'"></textarea>
<input class="pic-text submit-button button-color add-button" type="submit"
value="Add" onclick="addSubmit()" />
<input class="pic-text submit-button button-color cancel-button" type="submit"
value="Cancel" onclick="addHidePanel()" />
</form>
</div>
<div class="schedule">
<div class="schedule-title">
<span id="title">{{title}}</span>
<span>
<input class="pic-text submit-button button-color" type="submit"
style="margin: 0" value="Add" onclick="addShowPanel()"/>
</span>
</div>
<div class="schedule-line"></div>
<table class ="schedule-table">
<tbody>
</tbody>
</table>
</div>
<div class="chat">
<div class="chat-text">
</div>
<form style="height: 100%" id="chat-form" onsubmit="return chatSubmit()">
<input type="text" class="chat-input" placeholder="Type here..." onfocus="this.placeholder = ''"
onblur="this.placeholder = 'Type here...'">
<input type="submit" style="visibility: hidden;" />
</form>
</div>
</div>
<script>
loadChatContent();
loadScheduleTitle();
loadSchedule();
loadHeader();
</script>
</body>
</html>