-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
50 lines (45 loc) · 2.34 KB
/
sign-up.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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<?!= include("sign-up.css"); ?>
</head>
<body id="root">
<header>
<img src="https://lh5.googleusercontent.com/g8vm2sMiSVR9JIdnaehqzrXKG78A0hJtMOGVFN95AROiWcpdYnWegjCz2TVTnv-cu3UlgCvZbZAvFmmiTW1adE_ymerMtL8bLrXNKoV-2Q5JTeRLes-Bo-vRTyX9EhSjivG8EsBWMw=w755-h190" width="100%"/>
</header>
<div id="body">
<h1>Global San Francisco Toastmasters</h1>
<h2>Meeting # Sheet</h2>
<p>If you are a member and would like to participate in the next Toastmasters meeting, please fill out your name in an open role below.</p>
<ol>
<li><b>Toastmaster</b> must print <u>10 copies</u> of the agenda and bring it to the meeting</li>
<li><b>Toastmaster</b> must fill out the Word of the Day</li>
<li><b>Speakers</b> must fill out the Speech details and bring their <i>Evaluation Forms</i></li>
</ol>
<a id="print" href="https://gsftm.page.link/agendapdf">🖨Print the Agenda</a>
<div id="#Form"></div>
<ul class="info">
<li>You can reach this page from <a href="https://gsftm.page.link/agenda">https://gsftm.page.link/agenda</a></li>
<li>You can view the PDF version of the agenda at <a href="https://gsftm.page.link/agendapdf">https://gsftm.page.link/agendapdf</a></li>
<li>For more information about the club, visit <a href="https://globalsftoastmasters.toastmastersclubs.org">https://globalsftoastmasters.toastmastersclubs.org</a></li>
<li>For any questions or suggestions, email <a href="mailto:globalsftoastmasters@gmail.com?subject=Meeting # Sheet">globalsftoastmasters@gmail.com</a></li>
</ul>
<footer>Made by Angie for Global San Francisco Toastmasters</footer>
<script type="text/javascript">
const dataFromSheet = JSON.parse(<?= JSON.stringify(data); ?>);
const meetingDate = <?= meetingDate ?>;
function sendUpdatedDataToSheet(data) {
google.script.run.updateCurrent#s(data);
}
function resetEverything() {
google.script.run.Reset();
}
</script>
<?!= include("sign-up.js"); ?>
</div>
</body>
</html>