45 lines
No EOL
976 B
HTML
45 lines
No EOL
976 B
HTML
{% load static%}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sign Detection</title>
|
|
<!-- <link rel="icon" href="./img/cv.ico"> -->
|
|
<link rel="stylesheet" href="{% static 'index.css' %}" media="screen">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Sign Language Detection</h1>
|
|
</header>
|
|
|
|
<main>
|
|
<section>
|
|
<div class="split">
|
|
|
|
<div class="item">
|
|
<a href="/upload"><img src="{% static 'upload2.png' %}" alt="upload">
|
|
<h2>Upload</h2>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="item">
|
|
<a href="/webcam"><img src="{% static 'web.png' %}" alt="webcam">
|
|
<h2>Webcam</h2>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<!-- --------------------------Footer--------------------------- -->
|
|
<footer>
|
|
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |