Track items sold and graph profit for player shop inventory.
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

6 years ago
  1. {% extends "layout.html" %}
  2. {% block content %}
  3. <form id="mission-form" action="{{ url_for('shop_dataentry') }}" method="post"
  4. class="uk-margin-large-left">
  5. <label for="mission-data">Enter shops "Mission Item" output:</label> <br/>
  6. <textarea class="uk-textarea uk-form-small uk-form-width-large uk-margin-medium-bottom"
  7. autofocus=true rows=15 name="mission-data"></textarea>
  8. <br/>
  9. <label for="password">Password</label>
  10. <input type="password" name="password"
  11. class="uk-input uk-form-small uk-form-width-small uk-margin-medium-left"/>
  12. <br/>
  13. <input type="submit" value="Parse Entries"
  14. class="uk-button uk-button-primary uk-margin-small-top uk-border-rounded"/>
  15. </form>
  16. {% endblock %}