32 lines
829 B
HTML
32 lines
829 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
||
|
<link rel="stylesheet" href="./style.css">
|
||
|
|
||
|
<meta content="QuickURL" property="og:title" />
|
||
|
<meta content="QuickURL is an extremely basic URL shortener." property="og:description" />
|
||
|
<meta content="#a200ff" data-react-helmet="true" name="theme-color" />
|
||
|
|
||
|
<title>QuickURL</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="mainDiv">
|
||
|
<h1>QuickURL<hr></h1>
|
||
|
|
||
|
<form action="/makeURL" method="post">
|
||
|
<input required type="url" id="url" placeholder="Enter URL" name="url">
|
||
|
|
||
|
<br><br>
|
||
|
<input type="submit">
|
||
|
</form>
|
||
|
<br>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|