dga-detector / app /static /index.html
harpomaxx's picture
add minimal ui
3711b12
raw
history blame
1.03 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fast API πŸ€— Space served with Uvicorn</title>
<link rel="stylesheet" href="style.css" />
<script type="module" src="script.js"></script>
</head>
<body>
<main>
<section id="text-gen">
<h1>Simple DGA detector using 1DCNN </h1>
<p>
Model:
<a
href="https://huggingface.co/harpomaxx/dga-detector"
rel="noreferrer"
target="_blank"
>harpomaxx/dga-detector
</a>
</p>
<form class="text-gen-form">
<label for="text-gen-input">Check for a domain</label>
<input
id="text-gen-input"
type="text"
value="www.google.com"
/>
<button id="text-gen-submit">Submit</button>
<p class="text-gen-output"></p>
</form>
</section>
</main>
</body>
</html>