Add create db page
This commit is contained in:
17
templates/createDb.html
Normal file
17
templates/createDb.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block body %}
|
||||
|
||||
<div class="well editPanelTag">
|
||||
<h2>Init database</h2>
|
||||
<form action="{{ url_for('init') }}" method="post" class="dbForm">
|
||||
<div class="form-group fieldDbName">
|
||||
<label for="dbName">Database name</label>
|
||||
<input type="text" name="dbName" id="dbName" class="form-control">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="saveButton btn btn-lg btn-primary">Create</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user