Added Routes to BCF (#1644)

This commit is contained in:
Prabhat Singh
2021-08-12 12:40:25 +05:30
committed by GitHub
parent 4b64e096a5
commit 7a5b15e5a2
20 changed files with 846 additions and 88 deletions
@@ -0,0 +1,28 @@
{% extends 'base.html' %} {% block title %}{% endblock %} {% block content %}
<body class="text-center">
<div class="container">
<form method="POST" class="form-signin" style="color: black">
{{ form.hidden_tag() }}
<h1 class="h3 mb-3 font-weight-normal">Please Login</h1>
THis is Oauth Login
<br />
{{ form.username.label() }} {{ form.username(class="form-control",
placeholder="User Name") }} {{ form.password.label() }} {{
form.password(class="form-control", placeholder="Password") }}
<br />
<div class="checkbox mb-3">
<h6>Do not have an account?</h6>
<a
class="btn btn-sm btn-secondary"
href="{{ url_for('foundation_obj.register_page') }}"
>Register</a
>
</div>
{{ form.submit(class="btn btn-lg btn-block btn-primary") }}
</form>
</div>
</body>
{% endblock %}