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.

10 lines
278 B

2 years ago
2 years ago
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>Admin Dashboard</h1>
  4. <article>
  5. <p>You are {{user}}</p>
  6. <a href="{{url_for('chemical_create')}}">
  7. <button>
  8. Add a Chemical
  9. </button></a>
  10. </article>
  11. {% endblock %}