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
356 B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>Regular User Dashboard</h1>
  4. <article>
  5. <p>Logged in as {{user}}</p>
  6. <a href="{{url_for('batch_query_request')}}">
  7. <button>
  8. Batch Search Chemicals
  9. </button>
  10. </a>
  11. <a href="{{url_for('accounts_edit')}}">
  12. <button>
  13. Edit your profile
  14. </button>
  15. </a>
  16. </article>
  17. {% endblock %}