-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (31 loc) · 1.32 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>
<title>Headless</title>
<meta charset="utf-8">
<script type="module" src="dist/headless-example.js"></script>
<link type="text/css" rel="stylesheet" media="screen" href="node_modules/bootstrap/dist/css/bootstrap.css" />
</head>
<body>
<div class="container">
<h1>@converse/headless demo</h1>
<form class="login">
<div class="form-group">
<label for="jid">XMPP address</label>
<input required="required" type="text" name="jid" class="form-control" id="jid" aria-describedby="jidHelp" placeholder="Enter XMPP Address">
<small id="jidHelp" class="form-text text-muted">Also known as your Jabber ID (JID)</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input required="required" type="password" name="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<form class="logout" style="display: none">
<button type="submit" class="btn btn-primary">Logout</button>
</form>
<br/>
<div class="output"></div>
</div>
</body>
</html>