30 lines
926 B
HTML
30 lines
926 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<h2>Add New Tablet</h2>
|
||
|
|
<form method="POST" action="/add_tablet">
|
||
|
|
<div class="form-group">
|
||
|
|
<label for="brand">Brand:</label>
|
||
|
|
<input type="text" id="brand" name="brand" required>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="form-group">
|
||
|
|
<label for="model">Model:</label>
|
||
|
|
<input type="text" id="model" name="model" required>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="form-group">
|
||
|
|
<label for="serial_number">Serial Number:</label>
|
||
|
|
<input type="text" id="serial_number" name="serial_number" required>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="form-group">
|
||
|
|
<label for="notes">Notes:</label>
|
||
|
|
<textarea id="notes" name="notes"></textarea>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="form-group">
|
||
|
|
<button type="submit" class="btn">Add Tablet</button>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
{% endblock %}
|