24 lines
449 B
HTML
24 lines
449 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<h2>New Client</h2>
|
|
|
|
<form method="POST">
|
|
<p>
|
|
<label>Name<br>
|
|
<input name="name" required style="width: 360px;">
|
|
</label>
|
|
</p>
|
|
|
|
<p>
|
|
<label>Email<br>
|
|
<input name="email" style="width: 360px;">
|
|
</label>
|
|
</p>
|
|
|
|
<button type="submit">Create Client</button>
|
|
<a href="{{ url_for('clients.list_clients') }}" style="margin-left: 10px;">Cancel</a>
|
|
</form>
|
|
|
|
{% endblock %}
|