Spaces:
Sleeping
Sleeping
Create templates
Browse files
templates
ADDED
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Upload Images</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
background-color: #f4f4f9;
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
}
|
14 |
+
|
15 |
+
.container {
|
16 |
+
width: 50%;
|
17 |
+
margin: auto;
|
18 |
+
background-color: white;
|
19 |
+
padding: 20px;
|
20 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
21 |
+
border-radius: 10px;
|
22 |
+
margin-top: 50px;
|
23 |
+
}
|
24 |
+
|
25 |
+
h1 {
|
26 |
+
text-align: center;
|
27 |
+
color: #333;
|
28 |
+
}
|
29 |
+
|
30 |
+
.form-group {
|
31 |
+
margin-bottom: 15px;
|
32 |
+
}
|
33 |
+
|
34 |
+
label {
|
35 |
+
font-size: 1.1em;
|
36 |
+
color: #333;
|
37 |
+
}
|
38 |
+
|
39 |
+
input[type="text"], input[type="file"] {
|
40 |
+
width: 100%;
|
41 |
+
padding: 10px;
|
42 |
+
margin-top: 5px;
|
43 |
+
border-radius: 5px;
|
44 |
+
border: 1px solid #ccc;
|
45 |
+
}
|
46 |
+
|
47 |
+
button {
|
48 |
+
background-color: #4CAF50;
|
49 |
+
color: white;
|
50 |
+
border: none;
|
51 |
+
padding: 10px 20px;
|
52 |
+
cursor: pointer;
|
53 |
+
width: 100%;
|
54 |
+
border-radius: 5px;
|
55 |
+
}
|
56 |
+
|
57 |
+
button:hover {
|
58 |
+
background-color: #45a049;
|
59 |
+
}
|
60 |
+
|
61 |
+
.alert {
|
62 |
+
padding: 15px;
|
63 |
+
margin-top: 20px;
|
64 |
+
border-radius: 5px;
|
65 |
+
color: white;
|
66 |
+
text-align: center;
|
67 |
+
}
|
68 |
+
|
69 |
+
.alert.success {
|
70 |
+
background-color: #4CAF50;
|
71 |
+
}
|
72 |
+
|
73 |
+
.alert.error {
|
74 |
+
background-color: #f44336;
|
75 |
+
}
|
76 |
+
|
77 |
+
</style>
|
78 |
+
</head>
|
79 |
+
<body>
|
80 |
+
|
81 |
+
<div class="container">
|
82 |
+
<h1>Upload Images to GitHub</h1>
|
83 |
+
|
84 |
+
<!-- Display Success/Failure Message -->
|
85 |
+
{% if success_message %}
|
86 |
+
<div class="alert {{ 'success' if 'successfully' in success_message else 'error' }}">
|
87 |
+
{{ success_message }}
|
88 |
+
</div>
|
89 |
+
{% endif %}
|
90 |
+
|
91 |
+
<form action="/" method="POST" enctype="multipart/form-data">
|
92 |
+
<div class="form-group">
|
93 |
+
<label for="username">Username:</label>
|
94 |
+
<input type="text" name="username" id="username" required>
|
95 |
+
</div>
|
96 |
+
|
97 |
+
<div class="form-group">
|
98 |
+
<label for="image1">Upload Image 1:</label>
|
99 |
+
<input type="file" name="image1" id="image1" required>
|
100 |
+
</div>
|
101 |
+
|
102 |
+
<div class="form-group">
|
103 |
+
<label for="image2">Upload Image 2:</label>
|
104 |
+
<input type="file" name="image2" id="image2" required>
|
105 |
+
</div>
|
106 |
+
|
107 |
+
<button type="submit">Upload</button>
|
108 |
+
</form>
|
109 |
+
</div>
|
110 |
+
|
111 |
+
</body>
|
112 |
+
</html>
|