brain-rot-tok / static /basic.html
DenisT's picture
add html files
155198f
raw
history blame
1.09 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BASIC</title>
</head>
<body>
<h1>BASIC</h1>
<div>
<p>What it can do:</p>
<p>Provide a basic functionality.</p>
</div>
<form action="/basic" method="post" enctype="multipart/form-data">
<label for="video">Video:</label><br />
<input type="file" id="video" name="video" /><br />
<label for="color">Color:</label><br />
<input type="text" id="color" name="color" /><br />
<label for="size">Size:</label><br />
<input type="number" id="size" name="size" /><br />
<label for="font">Font:</label><br />
<input type="text" id="font" name="font" /><br />
<label for="credit">Credit:</label><br />
<input type="text" id="credit" name="credit" /><br />
<label for="credit_size">Credit Size:</label><br />
<input
type="number"
id="credit_size"
name="credit_size"
/><br /><br />
<input type="submit" value="Submit" />
</form>
<a href="/">Go back to index</a>
</body>
</html>