mirror of
https://github.com/simple-login/app.git
synced 2024-11-17 01:18:29 +01:00
30 lines
763 B
HTML
30 lines
763 B
HTML
{% extends 'default.html' %}
|
|
|
|
{% set active_page = "developer" %}
|
|
|
|
{% block title %}
|
|
Developer - Create new app
|
|
{% endblock %}
|
|
|
|
{% block default_content %}
|
|
<h1>Create new app</h1>
|
|
<p>An app can be a website, a SPA webapp or a mobile application</p>
|
|
<small>Let's get started integrating SimpleLogin into your app! </small>
|
|
|
|
<hr>
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
{{ form.csrf_token }}
|
|
|
|
<div class="form-group">
|
|
<label class="form-label">Display Name</label>
|
|
{{ form.name(class="form-control",
|
|
placeholder="Usually your product name, e.g. my-super-app.com") }}
|
|
{{ render_field_errors(form.name) }}
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">Create</button>
|
|
</form>
|
|
|
|
|
|
{% endblock %}
|