-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Slack Attendance</title>
</head>
<body>
<div class="container">
<div class="row">
<h1><span class="text-muted">Slack Attendance Taker</span></h1>
</div>
<hr/>
<p>Copy and paste the slack message url for which you're taking attendance:</p>
<form id="slack-message-link" action="/action_page.php">
<input type="text" style="width: 300px;" id="slack_link" placeholder="Enter Slack Message URL"><br><br>
<input type="button" onclick="getAttendanceReport()" value="Submit">
</form>
</div>
<hr/>
<div class="container">
<div id="myData"></div>
</div>
<script src="./app.js"></script>
</body>
</html>