Deepface_detect / App /templates /index.html
Vinh.Vu
Split layout to files
7357db4
raw
history blame contribute delete
800 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI-Deepfake Video Detection</title>
<script src="https://unpkg.com/react@18/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div id="root"></div>
<script type="text/babel" src="/static/Product.jsx"></script>
<script type="text/babel" src="/static/Technology.jsx"></script>
<script type="text/babel" src="/static/app.jsx"></script>
</body>
</html>