1
0
Fork 0
mirror of https://mzte.de/git/LordMZTE/brevo synced 2024-05-16 14:03:45 +02:00
brevo/assets/index.html.tera
2021-06-24 15:57:11 +02:00

51 lines
1.2 KiB
Plaintext

<!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>