62 lines
1.3 KiB
HTML
62 lines
1.3 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<!-- Required meta tags -->
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
|
||
|
|
<!-- Bootstrap CSS -->
|
||
|
|
<link rel="stylesheet" href="styles/css">
|
||
|
|
|
||
|
|
<title>afr0dita</title>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background-color: #FFFDFA;
|
||
|
|
}
|
||
|
|
input[type="text"], textarea {
|
||
|
|
background-color : #FFFDFA;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-control-sm {
|
||
|
|
font-family: inherit;
|
||
|
|
width: 100%;
|
||
|
|
border: 0;
|
||
|
|
border-bottom: 2px solid black;
|
||
|
|
outline: 0;
|
||
|
|
font-size: 1.3rem;
|
||
|
|
padding: 7px 0;
|
||
|
|
background: transparent;
|
||
|
|
transition: border-color 0.2s;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<div class="container">
|
||
|
|
<div class="d-flex flex-column min-vh-100 justify-content-center align-items-center">
|
||
|
|
<h1 class="py-5">afr0dita</h1>
|
||
|
|
<form action="/">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-7">
|
||
|
|
<input class="form-control-sm" type="text" autocomplete="off" id="url" name="url" placeholder="URL"><br><br>
|
||
|
|
</div>
|
||
|
|
<div class="col-5">
|
||
|
|
<input class="form-control-sm" type="text" autocomplete="off" id="tags" name="tags" placeholder="tags"><br><br>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row py-3">
|
||
|
|
|
||
|
|
<div class="py-3">
|
||
|
|
<input type="submit" class="btn btn-outline-dark" value="Submit">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|