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.
41 lines
416 B
41 lines
416 B
<!doctype html> |
|
<html> |
|
<head> |
|
<title>New Client</title> |
|
</head> |
|
|
|
<body> |
|
|
|
<h1>Add Client</h1> |
|
|
|
<form method="post"> |
|
|
|
<p> |
|
Company Name<br> |
|
<input name="company_name"> |
|
</p> |
|
|
|
<p> |
|
Contact Name<br> |
|
<input name="contact_name"> |
|
</p> |
|
|
|
<p> |
|
Email<br> |
|
<input name="email"> |
|
</p> |
|
|
|
<p> |
|
Phone<br> |
|
<input name="phone"> |
|
</p> |
|
|
|
<p> |
|
<button type="submit">Create Client</button> |
|
</p> |
|
|
|
</form> |
|
|
|
</body> |
|
</html> |
|
{% include "footer.html" %}
|
|
|