42 lines
1.1 KiB
Text
42 lines
1.1 KiB
Text
|
|
|
|
<div class="login-container section">
|
|
|
|
<h3>Login</h3>
|
|
|
|
<div class="alert alert-info">
|
|
<p class="text-center"><strong>Heads up!</strong> Signup is currently not available.</p>
|
|
<p>
|
|
Login using username/password can be setup after registration.
|
|
First time users can only register with third party services below
|
|
</p>
|
|
</div>
|
|
|
|
<span class="spacer"></span>
|
|
|
|
<form class="form" method="post" action="">
|
|
<div class="form-group">
|
|
{{ form.render('Email') }}
|
|
</div>
|
|
<div class="form-group">
|
|
{{ form.render('Password') }}
|
|
</div>
|
|
<div class="form-group">
|
|
{{ form.render('Login') }}
|
|
</div>
|
|
</form>
|
|
|
|
<span class="spacer"></span>
|
|
|
|
<div class="oauth">
|
|
|
|
<a class="button button-github" href="{{ url(['for': 'oauth', 'strategy': 'github']) }}">
|
|
{{ icon('social-github') }} GitHub
|
|
</a>
|
|
|
|
<a class="button button-google" href="{{ url(['for': 'oauth', 'strategy': 'google']) }}">
|
|
{{ icon('social-google') }} Google
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|