29 lines
No EOL
1 KiB
HTML
29 lines
No EOL
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
|
|
<script src="//code.jquery.com/jquery-2.2.4.min.js"></script>
|
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>Sign Up</h1>
|
|
<form action="/register" method="GET">
|
|
<div class="form-group">
|
|
<label for="client_id">User Name</label>
|
|
<input type="text" class="form-control" name="client_id" required placeholder="Please enter your user name">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="client_secret">Password</label>
|
|
<input type="password" class="form-control" name="client_secret" placeholder="Please enter your password">
|
|
</div>
|
|
<button type="submit" class="btn btn-success">Register</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |