File size: 628 Bytes
2621741 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!-- templates/index.html -->
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<section class="upload-section">
<h2>Upload Match Video</h2>
<form action="/upload" method="post" enctype="multipart/form-data">
<label for="player_name">Player Name:</label>
<input type="text" id="player_name" name="player_name" required>
<label for="file">Select Video:</label>
<input type="file" id="file" name="file" accept="video/*" required>
<button type="submit">Analyze DRS</button>
</form>
</section>
{% endblock %} |