19 lines
520 B
HTML
19 lines
520 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>HTTP authentication over XMPP</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>HTTP authentication over XMPP</h1>
|
|
<form action="/login" method="POST">
|
|
<label for="username">Jabber ID</label>
|
|
<input type="text" class="form-control" name="jid" placeholder="Please enter your JID">
|
|
<button type="submit" class="btn btn-success">Login</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|