feedless/app/views/signup.ejs

28 lines
857 B
Plaintext
Raw Normal View History

2020-04-10 08:53:30 +02:00
<%- include('_header') %>
<div style="max-width: 800px; margin: 0 auto">
<h1 style="padding-top: 50px">Create account</h1>
2020-04-11 13:02:05 +02:00
<form method="POST" action="/signup" enctype="multipart/form-data">
2020-04-10 08:53:30 +02:00
<div style="padding-top: 30px">
<label>
Profile picture:
<div class="columns" style="margin-top: 20px; align-items: center;">
2020-04-11 13:23:17 +02:00
<div class="profile-pic-placeholder" style="margin-right: 15px">
2020-04-10 08:53:30 +02:00
<img class="js-profile-pic-placeholder">
</div>
<input type="file" name="pic" class="js-profile-pic-upload" />
</div>
</label>
</div>
<div style="padding: 20px 0 30px 0">
<label>
Name:<br />
<input type="text" name="name" />
</label>
</div>
2020-04-11 18:03:58 +02:00
<input class="button-big" type="submit" value="Sign up" />
2020-04-10 08:53:30 +02:00
</form>
</div>
<%- include('_footer') %>