tracman-server/views/login.html

74 lines
2.0 KiB
HTML
Raw Normal View History

2017-03-19 07:57:47 -06:00
{% extends 'templates/base.html' %}
{% block title %}{{ super() }} | Login{% endblock %}
2017-04-01 11:03:05 -06:00
{% block head %}
{{super()}}
2017-04-12 18:38:06 -06:00
<link rel="stylesheet" type="text/css" href="/static/css/.form.min.css">
<link rel="stylesheet" type="text/css" href="/static/css/.login.min.css">
2017-04-01 11:03:05 -06:00
<style>
p, input, #social-login {
margin-bottom: 5vh;
}
</style>
{% endblock %}
2017-03-19 07:57:47 -06:00
{% block main %}
2017-04-01 11:03:05 -06:00
<section class='container'>
2017-03-19 07:57:47 -06:00
2017-04-01 11:03:05 -06:00
<h1>Welcome!</h1>
<div class='flex'>
<div id='login'>
2017-03-19 07:57:47 -06:00
2017-04-01 11:03:05 -06:00
<h3>Login</h3>
<form method="post">
2017-04-09 21:56:28 -06:00
<div id='social-login' class='flex form-group' style="justify-content:space-around">
<a href="/login/google" class='gp btn'>
<i class="fa fa-google-plus"></i>
<span class='text'>Login with Google</span>
</a>
<a href="/login/facebook" class='fb btn'>
<i class="fa fa-facebook"></i>
<span class='text'>Login with Facebook</span>
</a>
<a href="/login/twitter" class='tw btn'>
<i class="fa fa-twitter"></i>
<span class='text'>Login with Twitter</span>
</a>
2017-04-01 11:03:05 -06:00
</div>
2017-04-09 21:56:28 -06:00
<div class='form-group' style="flex-wrap:wrap">
<input type="email" placeholder="Email" name="email" required>
<input type="password" placeholder="Password" name="password" required>
</div>
2017-04-01 11:03:05 -06:00
<input type="submit" value="Sign in" class='btn main'>
<p><a href="/login/forgot">Forgot your password?</a></p>
</form>
</div>
<hr style="display:none">
2017-04-01 11:03:05 -06:00
<div id='signup'>
2017-04-01 11:03:05 -06:00
<h3>Create account</h3>
<p>Welcome aboard! </p>
<form action="/signup" method="POST">
<input type="email" name="email" placeholder="Your Email" required>
<p>You will be sent an email confrimation with a link to create a password. </p>
<p>By signing up, you agree to our <a href="/terms">terms of service</a> and <a href="/privacy">privacy policy</a>. </p>
<input type="submit" value="Sign up" class='btn'>
</form>
</div>
</div>
2017-03-19 07:57:47 -06:00
2017-04-01 11:03:05 -06:00
</section>
2017-03-19 07:57:47 -06:00
{% endblock %}