trakr/public/html/new.html

71 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2023-12-22 21:29:33 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Create New Tracking Pixel</title>
<style>
body {
font-family: Arial, sans-serif;
2023-12-23 20:29:53 +01:00
background-color: #f4f4f4;
color: #333;
2023-12-22 21:29:33 +01:00
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
width: 300px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
2023-12-23 20:29:53 +01:00
background-color: white;
2023-12-22 21:29:33 +01:00
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
2023-12-23 20:29:53 +01:00
h2 {
color: #4CAF50;
margin-bottom: 20px;
}
2023-12-22 21:29:33 +01:00
form {
display: flex;
flex-direction: column;
}
input[type="text"] {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 3px;
}
button {
padding: 10px;
2023-12-23 20:29:53 +01:00
background-color: #4CAF50;
2023-12-22 21:29:33 +01:00
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
}
button:hover {
2023-12-23 20:29:53 +01:00
background-color: #367c39;
2023-12-22 21:29:33 +01:00
}
</style>
</head>
<body>
<div class="container">
<h2>Create New Tracking Pixel</h2>
<form action="/create-pixel" method="post">
<input type="text" name="title" placeholder="Enter pixel title" required>
<button type="submit">Create Pixel</button>
</form>
</div>
</body>
</html>