backend / templates /result.html
dschandra's picture
Create result.html
c7f87ab verified
raw
history blame contribute delete
733 Bytes
<!-- templates/result.html -->
{% extends "base.html" %}
{% block title %}DRS Result{% endblock %}
{% block content %}
<section class="result-section">
<h2>DRS Analysis Result</h2>
<div class="drs-verdict">
<h3>Decision: {{ decision }}</h3>
<p>Player: {{ player_name }}</p>
<p>Ball Speed: {{ speed }} km/h</p>
<p>Match ID: {{ match_id }}</p>
</div>
<div class="replay-container">
<video controls>
<source src="{{ replay_url }}" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<a href="/" class="btn">Back to Home</a>
</section>
{% endblock %}