idk how an AI could do better front end experience than me but aight.

This commit is contained in:
ForeverPyrite
2025-01-07 16:00:16 -05:00
parent 613cfabb5a
commit 8aae2cea1c
4 changed files with 268 additions and 201 deletions

View File

@@ -2,29 +2,27 @@
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Screw You Bardo</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="icon" type="image/x-icon" href="https://www.foreverpyrite.com/favicon.ico">
<script src="{{ url_for('static', filename='script.js')}}"></script>
<script defer src="{{ url_for('static', filename='script.js') }}"></script>
</head>
<body>
<main class="container">
<section class="response-section">
<pre id="response-area">Response will appear here.</pre>
</section>
<div class="content">
<pre id="response-area">Response will appear here. </pre>
<div class="form_box">
<input id="url_box" placeholder="Paste the lecture URL here." autofocus></input>
<input id="submit" type="submit" onclick=""></input>
</div>
</div>
<section class="form-section">
<form id="url-form">
<input type="url" id="url_box" name="url" placeholder="Paste the lecture URL here." required autofocus>
<button type="submit" id="submit">Submit</button>
</form>
</section>
</main>
</body>
</html>