mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-23 06:52:39 +00:00
Added BCF Server (#1626)
This commit is contained in:
@@ -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('register_page') }}"
|
||||
>Register</a
|
||||
>
|
||||
</div>
|
||||
|
||||
{{ form.submit(class="btn btn-lg btn-block btn-primary") }}
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user