-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathproject_update_upload.html
More file actions
75 lines (73 loc) · 4.77 KB
/
project_update_upload.html
File metadata and controls
75 lines (73 loc) · 4.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="" />
<link
rel="stylesheet"
as="style"
onload="this.rel='stylesheet'"
href="https://fonts.googleapis.com/css2?display=swap&family=Noto+Sans%3Awght%40400%3B500%3B700%3B900&family=Space+Grotesk%3Awght%40400%3B500%3B700"
/>
<title>Stitch Design</title>
<link rel="icon" type="image/x-icon" href="data:image/x-icon;base64," />
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
</head>
<body>
<div class="relative flex size-full min-h-screen flex-col bg-[#141b1f] dark group/design-root overflow-x-hidden" style='font-family: "Space Grotesk", "Noto Sans", sans-serif;'>
<div class="layout-container flex h-full grow flex-col">
<header class="flex items-center justify-between whitespace-nowrap border-b border-solid border-b-[#2b3840] px-10 py-3">
<div class="flex items-center gap-4 text-white">
<div class="size-4">
<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 4H17.3334V17.3334H30.6666V30.6666H44V44H4V4Z" fill="currentColor"></path></svg>
</div>
<h2 class="text-white text-lg font-bold leading-tight tracking-[-0.015em]">InnovateHub</h2>
</div>
<div class="flex flex-1 justify-end gap-8">
<div class="flex items-center gap-9">
<a class="text-white text-sm font-medium leading-normal" href="#">Dashboard</a>
<a class="text-white text-sm font-medium leading-normal" href="#">Projects</a>
<a class="text-white text-sm font-medium leading-normal" href="#">Teams</a>
<a class="text-white text-sm font-medium leading-normal" href="#">Resources</a>
</div>
<div
class="bg-center bg-no-repeat aspect-square bg-cover rounded-full size-10"
style='background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuCWot_5kCXXg5JIW_Y3NVF4iRPA-dSs4hl30pWp7oUvWi7oBi_hTJ3BQK3SYx-cnkcF9uHKw_pPTtSgSREuBu7Qhn4tB-4RmXJi_iEiUQx3V1rFsEd4NjPt0U7vGx1iAPy3LM0FnDf-LwkVOhO6AlOR8VOzOB0saWYOTbQu1Fyfie2wgLiExXXWZAquUlExbEAII6Rb0oHmziLsFsQoUp28qnbTq45N2h622Gf5xm38VXehJfIMXRbvIAtXskN7BaqxNBuiv1Lxc6By");'
></div>
</div>
</header>
<div class="px-40 flex flex-1 justify-center py-5">
<div class="layout-content-container flex flex-col max-w-[960px] flex-1">
<div class="flex flex-wrap justify-between gap-3 p-4">
<p class="text-white tracking-light text-[32px] font-bold leading-tight min-w-72">Project Update Submission</p>
</div>
<p class="text-white text-base font-normal leading-normal pb-3 pt-1 px-4">
Submit your latest project update. You can upload an image (PNG, JPG), a PDF, or enter a text update. Maximum file size for uploads: 10MB. Preferred format: Text
update.
</p>
<div class="flex max-w-[480px] flex-wrap items-end gap-4 px-4 py-3">
<label class="flex flex-col min-w-40 flex-1">
<textarea
placeholder="Enter your project update (max 500 characters)"
class="form-input flex w-full min-w-0 flex-1 resize-none overflow-hidden rounded-xl text-white focus:outline-0 focus:ring-0 border border-[#3d505c] bg-[#1f282e] focus:border-[#3d505c] min-h-36 placeholder:text-[#9db1be] p-[15px] text-base font-normal leading-normal"
></textarea>
</label>
</div>
<div class="flex flex-col p-4">
<div class="flex flex-col items-center gap-6 rounded-xl border-2 border-dashed border-[#3d505c] px-6 py-14">
<div class="flex max-w-[480px] flex-col items-center gap-2">
<p class="text-white text-lg font-bold leading-tight tracking-[-0.015em] max-w-[480px] text-center">Drag and drop your file here, or</p>
<p class="text-white text-sm font-normal leading-normal max-w-[480px] text-center">Browse Files</p>
</div>
<button
class="flex min-w-[84px] max-w-[480px] cursor-pointer items-center justify-center overflow-hidden rounded-full h-10 px-4 bg-[#2b3840] text-white text-sm font-bold leading-normal tracking-[0.015em]"
>
<span class="truncate">Upload File</span>
</button>
</div>
</div>
<p class="text-[#9db1be] text-sm font-normal leading-normal pb-3 pt-1 px-4 text-center underline">By submitting, you agree to our terms and conditions.</p>
</div>
</div>
</div>
</div>
</body>
</html>