31 lines
901 B
HTML
31 lines
901 B
HTML
{% extends "interface/project.html" %}
|
|
|
|
{% block page %}
|
|
<p>
|
|
Some instructions about how to submit the file
|
|
</p>
|
|
<div class="col-md-6 offset-md-3">
|
|
<form>
|
|
<div class="form-group">
|
|
<label for="name">Name</label>
|
|
<input type="text" id="name" class="form-control"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="instrument">Instrument</label>
|
|
<input type="text" id="instrument" class="form-control"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="video-file">Video File</label>
|
|
<input type="file" accept="video/*" class="" id="video-file" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="notes">Notes</label>
|
|
<textarea class="form-control" id="notes"></textarea>
|
|
</div>
|
|
<div class="text-right">
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %} |