-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose-message.html
183 lines (167 loc) · 6.31 KB
/
compose-message.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html>
<head>
<title>Compose Message</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/foundation.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
</head>
<body>
<header class="">
<div>
<!-- <img src="img/mest-logo.png"> -->
<h3>MELTWATER ENTREPRENEURIAL SCHOOL OF TECHNOLOGY</h3>
</div>
<!-- nav start -->
<nav class ="top-bar " data-options ="is_hover:false">
<ul class="title-area ">
<!-- Title Area -->
<li class="name">
<h1><a href="#"></a></h1>
</li>
<li class ="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class ="top-bar-section ">
<!-- Left Nav Section -->
<ul class="left">
<li><a href="index.html">Home</a></li>
</ul>
<!-- Right Nav Section -->
<ul class ="right">
<li class="hide-for-small"></li>
<li class="active"><a href="">Search</a></li>
<li><a href="">Messages</a></li>
<li><a href="">Favorite</a></li>
<li id="profile-pic"><img src="img/nick.jpg"></li>
<li class ="has-dropdown "><a href="">Hello, Nick</a>
<ul class ="dropdown">
<li><a href="#">logout</a></li>
</ul>
</ul>
</section>
</nav>
<!-- nav ends -->
</header>
<!-- right column -->
<div id="main-container">
<div id="right-column">
<p><h3>Where did you leave things with Donna?</h3>
Consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud</p>
<div id="checklist">
<div id="checklist-header">
<p>Before sending, please complete the checklist</p>
</div>
<div id="checklikst-checkbox">
<form class="custom">
<label for="purpose-of-call">
<input type="checkbox" name="purpose-of-call">Have you clearly explained the purpose of the call
</label>
<label for="short-and-clear">
<input type="checkbox" name="short-and-clear">Short and sharp?
</label>
<label for="agenda">
<input type="checkbox" name="agenda">Did you send an agenda? (it does not need to be long!)
</label>
<label for="check-spelling">
<input type="checkbox" name="check-spelling">Have you checked for spelling mistakes?
</label>
<label for="give-contact">
<input type="checkbox" name="give-contact">Did you leave your contact details? (skype, google talk)
</label>
</form>
</div>
</div>
<!-- orbit of phrases -->
<div id="orbit-phrases">
<ul data-orbit>
<li>
<h5>Have a strong introduction</h5>
<p>Introductions serve as a brief summary of the main content. It offers you the opportunity to capture the attention of the reader in order to get your ides across</p>
</li>
<li>
<h5>Have a strong introduction</h5>
<p>Introductions serve as a brief summary of the main content. It offers you the opportunity to capture the attention of the reader in order to get your ides across</p>
</li>
<li>
<h5>Have a strong introduction</h5>
<p>Introductions serve as a brief summary of the main content. It offers you the opportunity to capture the attention of the reader in order to get your ides across</p>
</li>
</ul>
<a href="">Click to see more message tips</a>
</div>
</div>
<!-- right container ends -->
<!-- left container begins -->
<div id="left-container">
<div> <!-- select type of conversation -->
<p>Type of conversation:
<select class="small-6 ">
<option>Arrange a coaching call</option>
<option>Coaching conversation over email</option>
<option>Asking for a favor</option>
<option>Catch-up</option>
</select>
</p>
</div>
<!-- progress bar -->
<div id="progress-bar">
</div>
<!-- compose box -->
<div id="compose-box">
<!-- <h5>Subject:</h5> -->
<input type="text" class="large-12 small-9 columns" name="msg-subject" placeholder="Subject">
<textarea name="compose" placeholder="Compose message"></textarea><br>
<button type="submit" name="send-msg"><a href="#" data-reveal-id="send-msgModal">send</a></button>
</div>
<!-- message history -->
<div id="msg-history">
<h4>Message History</h4>
<div>
<div id="msg-sender"><li><strong>Msg Sender</strong></li></div>
<li>Msg Content</li>
</div>
</div>
</div>
<!-- left container ends -->
<!-- checklist modal -->
<div id="send-msgModal" class="reveal-modal small">
<p><strong>Are you sure you want to send?</strong></p><br>
<p><small>you are about to send a message with some items on the checklis unchecked.</small></p>
<p>Would you like to go back and carry out those recommended steps or send anyway?</p>
<a class="close-reveal-modal">×</a>
<button><a href="">Send Anyway</a></button>
<div id="msg-send-buttons">
<button type="submit" name="send-msg"><a href="#" data-reveal-id="send-msgModal">send</a></button>
</div>
</div>
</div>
</div>
<!-- scripts go here -->
<script>
document.write('<script src=' +
('__proto__' in {} ? 'js/vendor/zepto' : 'js/vendor/jquery') +
'.js><\/script>')
</script>
<script src="js/foundation/foundation.js"></script>
<script src="js/foundation/foundation.alerts.js"></script>
<script src="js/foundation/foundation.clearing.js"></script>
<script src="js/foundation/foundation.cookie.js"></script>
<script src="js/foundation/foundation.dropdown.js"></script>
<script src="js/foundation/foundation.forms.js"></script>
<script src="js/foundation/foundation.joyride.js"></script>
<script src="js/foundation/foundation.magellan.js"></script>
<script src="js/foundation/foundation.orbit.js"></script>
<script src="js/foundation/foundation.placeholder.js"></script>
<script src="js/foundation/foundation.reveal.js"></script>
<script src="js/foundation/foundation.section.js"></script>
<script src="js/foundation/foundation.tooltips.js"></script>
<script src="js/foundation/foundation.topbar.js"></script>
<script src="js/foundation/foundation.interchange.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>