17 lines
635 B
HTML
17 lines
635 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
|
|
<h1>Add Department(s)</h1>
|
|
|
|
<form action="{{ url_for('insert_department') }}" method="post">
|
|
<div class="form-group col-xs-8">
|
|
<label for="first_name">Name:</label>
|
|
<input type="text" class="form-control" id="department_name" name="department_name" placeholder="Department Name">
|
|
</div>
|
|
<div class="form-group col-xs-4">
|
|
<label for="last_name">Custom ID:</label>
|
|
<input type="text" class="form-control" id="department_id" name="department_id" placeholder="Department ID">
|
|
</div>
|
|
<button type="submit" class="btn btn-default">Create</button>
|
|
</form>
|
|
{% endblock %} |