-
Notifications
You must be signed in to change notification settings - Fork 1
/
upload.html
59 lines (55 loc) · 1.68 KB
/
upload.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add New Decoration</title>
<style>
body {
font-family: 'Verdana', sans-serif;
background-color: #181818;
color: #e0e0e0;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
h1 {
color: #00ccff;
margin-bottom: 20px;
font-size: 36px;
text-transform: uppercase;
letter-spacing: 2px;
}
.form-container {
background-color: #292929;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
max-width: 800px;
width: 100%;
}
iframe {
border: none;
width: 100%;
height: 1256px;
border-radius: 12px;
}
.tutorial-link {
color: #00ccff;
text-decoration: none;
margin-top: 10px;
display: block;
text-align: center;
}
</style>
</head>
<body>
<h1>Add New Decoration</h1>
<div class="form-container">
<!-- Embed Google Form here -->
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScvE1I7Mll0AAuMTvVfp8nmfnJTNC3G0g_BGmgh1kXL5xEorg/viewform?embedded=true" width="640" height="1256" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<a href="docs/how-to-get-preview.html" target="_blank" class="tutorial-link">How to Create a Preview Image</a>
</body>
</html>