mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-10 06:00:51 +00:00
29 lines
900 B
HTML
29 lines
900 B
HTML
{% 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 %}
|