generated from lukeocodes/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·34 lines (28 loc) · 1.25 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
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="chat.css">
</head>
<body>
<form class="form-signin text-center" id="login">
<img class="mb-4" src="http://www.freelogovectors.net/wp-content/uploads/2018/05/nexmo-logo.png" alt="" width="166" height="30">
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
<label for="inputUsername" class="sr-only">Username</label>
<input type="" name="username" class="form-control mb-3" placeholder="Username" required autofocus>
<button class="btn btn-lg btn-primary btn-block" type="submit" id="loginButton">Sign in</button>
<p class="mt-5 mb-3 text-muted">© 2017-2019</p>
</form>
<section id="messages">
<!-- /audio-toggle -->
<h1>Messages</h1>
<div id="messageFeed"></div>
<textarea id="messageTextarea"></textarea>
<br>
<button id="send">Send</button>
</section>
<script src="config.js"></script>
<script src="chat.js"></script>
<script src="./node_modules/nexmo-client/dist/nexmoClient.js"></script>
</body>
</html>