diff options
Diffstat (limited to 'views/register.ejs')
-rw-r--r-- | views/register.ejs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/views/register.ejs b/views/register.ejs new file mode 100644 index 0000000..1dbc13e --- /dev/null +++ b/views/register.ejs @@ -0,0 +1,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') %> |