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.

16 lines
332 B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>Welcome, {{user.name | safe}}</h1>
  4. <article>
  5. <a href="{{url_for('batch_query_request')}}">
  6. <button>
  7. Batch Search Chemicals
  8. </button>
  9. </a>
  10. <a href="{{url_for('accounts_edit')}}">
  11. <button>
  12. Edit your profile
  13. </button>
  14. </a>
  15. </article>
  16. {% endblock %}