Frontend
This commit is contained in:
parent
47441885eb
commit
2fc92cedd4
6 changed files with 141 additions and 1 deletions
32
static/index.html
Normal file
32
static/index.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue