-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontribute-en.html
More file actions
192 lines (161 loc) · 4.88 KB
/
contribute-en.html
File metadata and controls
192 lines (161 loc) · 4.88 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contribute | Sealica: Archive of Iranian Seals</title>
<style>
@font-face {
font-family: 'Dastan';
src: url('assets/css/dastan.ttf') format('truetype');
}
body {
margin: 0;
padding: 0;
font-family: 'Dastan', sans-serif;
font-size: 14pt;
background-color: #fff;
direction: ltr;
overflow-x: hidden;
}
.header-img {
width: 800px;
height: auto;
display: block;
margin: 0 auto;
padding: 10px;
}
.header-img:hover {
content: url("assets/css/sealica_header_hover.jpg"); /* Changes the image source */
}
nav {
width: 750px;
margin: 0 auto;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
}
nav a {
font-size: 16pt;
color: #b0b0b0;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
transition: color 0.3s ease;
}
nav a:hover {
color: #000000;
}
main {
max-width: 1024px;
margin: 0 auto;
padding: 30px 15px;
}
h2 {
font-size: 26pt;
color: #003366;
text-align: center;
margin-bottom: 10px;
}
p.intro {
text-align: center;
color: #333;
margin-bottom: 30px;
}
form {
display: flex;
flex-direction: column;
gap: 15px;
}
label {
font-size: 14pt;
color: #003366;
}
input,
textarea,
select {
font-size: 13pt;
padding: 8px 12px;
border-radius: 6px;
border: 1px solid #ccc;
font-family: 'Dastan', sans-serif;
}
button {
font-size: 14pt;
padding: 10px;
background-color: #003366;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-family: 'Dastan', sans-serif;
}
.g-recaptcha {
margin-top: 10px;
}
footer {
text-align: center;
font-size: 12pt;
font-family: Calibri, sans-serif;
color: gray;
padding: 10px;
background-color: white;
margin-top: 40px;
direction: ltr;
}
</style>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<img src="assets/css/sealica_header.jpg" alt="Sealica Header" class="header-img">
<nav>
<a href="index-en.html" style="font-size: 16pt;">Home</a>
<a href="collections-en.html" style="font-size: 16pt;">Collections</a>
<a href="library-en.html" style="font-size: 16pt;">Library</a>
<a href="map-en.html" style="font-size: 16pt;">Map</a>
<a href="about-en.html" style="font-size: 16pt;">About</a>
<a href="contribute-en.html" style="font-size: 16pt;">Contribute</a>
<a href="contribute.html" style="margin-left: 10px; font-size: 22pt;">فارسی</a>
</nav>
<main>
<h2>Contribute a Seal to Sealica</h2>
<p class="intro">
If you've discovered a historical seal from Iran or hold related metadata,
we welcome your contribution. Submissions will be reviewed and may be added to the archive,
credited under your name.
</p>
<form action="/submit_stamp" method="POST" enctype="multipart/form-data">
<label for="senderName">Your Name:</label>
<input type="text" id="senderName" name="senderName" required>
<label for="senderEmail">Your Email:</label>
<input type="email" id="senderEmail" name="senderEmail" required>
<label for="generalName">Seal Name:</label>
<input type="text" id="generalName" name="generalName" required>
<label for="location">Discovery Location:</label>
<input type="text" id="location" name="location">
<label for="period">Historical Period:</label>
<select id="period" name="period">
<option>Unspecified</option>
<option>Prehistoric</option>
<option>Achaemenid</option>
<option>Parthian</option>
<option>Sasanian</option>
<option>Middle Period</option>
<option>Qajar</option>
<option>Modern</option>
</select>
<label for="description">Short Description:</label>
<textarea id="description" name="description" rows="4"></textarea>
<label for="imageUpload">Seal Image (optional):</label>
<input type="file" id="imageUpload" name="imageUpload" accept="image/*">
<div class="g-recaptcha" data-sitekey="YOUR_SITE_KEY"></div>
<button type="submit">📩 Submit Seal</button>
</form>
</main>
<footer>
Sealica: Thesaurus Sigillorum Iranicorum – Archive of Iranian Seals<br>
Powered by <a href="mailto:alirafi@gmx.ch">Ali Mashhadi Rafi</a>
</footer>
</body>
</html>