forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 942 Bytes
/
index.html
File metadata and controls
35 lines (35 loc) · 942 Bytes
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
35
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome to Solid</title>
<link rel="stylesheet" href="/common/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h3>Welcome to Solid</h3>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<p style="margin-top: 3em; margin-bottom: 3em;">
If you have not already done so, please create an account.
</p>
</div>
</div>
<div class="row">
<div class="col-md-2">
<form method="get" action="/register">
<button type="submit" class="btn btn-primary" id="register">Register</button>
</form>
</div>
<div class="col-md-10">
<form method="get" action="/login">
<button type="submit" class="btn btn-primary" id="login">Login</button>
</form>
</div>
</div>
</div>
</body>
</html>