mirror of
https://mzte.de/git/LordMZTE/brevo
synced 2024-10-31 20:59:01 +01:00
50 lines
1.2 KiB
Text
50 lines
1.2 KiB
Text
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>brevo</title>
|
|
<style type="text/css" media="screen">
|
|
body {
|
|
background-color: #282a36;
|
|
color: #f8f8f2;
|
|
font-family: monospace;
|
|
}
|
|
|
|
#content {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
}
|
|
|
|
#url_input {
|
|
width: 80vw;
|
|
height: 30px;
|
|
background-color: #282a36;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
#submit_button {
|
|
height: 30px;
|
|
background-color: #50fa7b;
|
|
color: #282a36;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">
|
|
<div>
|
|
<h1>Shorten URL</h1>
|
|
<form action="" method="POST" accept-charset="utf-8">
|
|
<input type="text" name="url" id="url_input" placeholder="enter URL here...">
|
|
<button type="submit" id="submit_button">Create!</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|