blob: 1dbc13ecc4cb96c301fa48940c10f4bdf277df61 (
plain)
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
|
<%- include('partials/header') %>
<%- include('partials/nav') %>
<%- include('partials/search') %>
<div class='content'>
<%- include('partials/categories') %>
<div class='main'>
<div class='logCard'>
<h4 style='text-align: center'>Register</h4>
<div class='fff'>
<form id='logform' action="/register" method='POST'>
<label for="" type='text'>Name</label>
<input type="text" name='name'>
<label for="">Email:</label>
<input type="email" name='username'>
<label for="">Website:</label>
<input type="text" name='website'>
<label for="">About:</label>
<input type="text" name='about'>
<label for="">Password:</label>
<input type="password" name='password'>
<button type='submit'>Register</button>
</form>
</div>
</div>
</div>
<%- include('partials/popular') %>
</div>
<%- include('partials/magicCats') %>
<%- include('partials/magicPops') %>
<%- include('partials/footer') %>
|