-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsignup.ejs
35 lines (35 loc) · 876 Bytes
/
signup.ejs
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>
<% include partials/head %>
</head>
<body class="container-fluid">
<header>
<% include partials/header %>
</header>
<main class="page-wrap">
<div>
<h2><%= title %></h2>
<form method="post" action="/signup">
<div class="form-group">
<label for="email">Email</label>
<input class="form-control" type="text" name="email" id="email">
</div>
<div class="form-group">
<label for="email">Password</label>
<input class="form-control" type="password" name="password" id="password">
</div>
<input class="btn btn-default" type="submit">
</form>
</div>
</main>
<footer class="site-footer">
<% include partials/footer %>
</footer>
</body>
</html>