41 lines
No EOL
881 B
HTML
41 lines
No EOL
881 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel=”stylesheet” href=”{% static 'index.css' %}”>
|
|
<script src="{% static 'app.js' %}"></script>
|
|
<!-- CSS only -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
|
|
<style>
|
|
|
|
.parent{
|
|
display:flex;
|
|
}
|
|
.camera {
|
|
width: 50%;
|
|
|
|
|
|
}
|
|
.ranges{
|
|
width: 50%;
|
|
|
|
|
|
}
|
|
</style>
|
|
|
|
<title>Homepage</title>
|
|
</head>
|
|
<body>
|
|
<h1>Sign Lanuagage Detection</h1>
|
|
|
|
<a href="{% url 'video_feed' %}" class="btn btn-primary" role="button">Video Feed</a>
|
|
<br>
|
|
<br>
|
|
|
|
|
|
</body>
|
|
</html> |