You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
842 B
17 lines
842 B
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<form id="mission-form" action="{{ url_for('shop_dataentry') }}" method="post"
|
|
class="uk-margin-large-left">
|
|
<label for="mission-data">Enter shops "Mission Item" output:</label> <br/>
|
|
<textarea class="uk-textarea uk-form-small uk-form-width-large uk-margin-medium-bottom"
|
|
autofocus=true rows=15 name="mission-data"></textarea>
|
|
|
|
<br/>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password"
|
|
class="uk-input uk-form-small uk-form-width-small uk-margin-medium-left"/>
|
|
<br/>
|
|
<input type="submit" value="Parse Entries"
|
|
class="uk-button uk-button-primary uk-margin-small-top uk-border-rounded"/>
|
|
</form>
|
|
{% endblock %}
|