bigpappic's picture
Please make sure that the web interface is very easy to use and not complicated at all we want our staff to be able to function very easily and make things flow
298c3e1 verified
raw
history blame
1.55 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create New Project | Simple Canvas</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow p-6">
<div class="max-w-md mx-auto bg-white p-6 rounded-lg shadow">
<h1 class="text-2xl font-bold mb-4">Create New Project</h1>
<form class="space-y-4">
<div>
<label class="block mb-1">Project Name</label>
<input type="text" class="w-full p-2 border rounded">
</div>
<div>
<label class="block mb-1">Project Type</label>
<select class="w-full p-2 border rounded">
<option>Blank Canvas</option>
<option>Document</option>
<option>Design</option>
</select>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-2 rounded hover:bg-blue-700">
Create Project
</button>
</form>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html>