uncia/uncia/frontend/page/register.haml

11 lines
487 B
Plaintext

-extends 'base.haml'
-set page = 'Register'
-block content
.title -> Register
%form(id='logreg', action='/register', method='post')
%input(type='text', name='username', placeholder='Username', value='{{form.get("username", "")}}')
%input(type='password', name='password', placeholder='Password', value='{{form.get("password", "")}}')
%input(type='password', name='password2', placeholder='Password', value='{{form.get("password2", "")}}')
%input(type='submit', value='Login')