DmitrMakeev
commited on
Commit
•
cb10cfb
1
Parent(s):
3a5b355
Update upl_csv.html
Browse files- upl_csv.html +55 -0
upl_csv.html
CHANGED
@@ -6,7 +6,58 @@
|
|
6 |
<title>CSV Upload</title>
|
7 |
<!-- Подключение стилей Notyf -->
|
8 |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf/notyf.min.css">
|
|
|
|
|
|
|
9 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
.loader {
|
11 |
border: 16px solid #f3f3f3;
|
12 |
border-radius: 50%;
|
@@ -33,6 +84,10 @@
|
|
33 |
100% { transform: rotate(360deg); }
|
34 |
}
|
35 |
</style>
|
|
|
|
|
|
|
|
|
36 |
</head>
|
37 |
<body>
|
38 |
<h1>Upload CSV File</h1>
|
|
|
6 |
<title>CSV Upload</title>
|
7 |
<!-- Подключение стилей Notyf -->
|
8 |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf/notyf.min.css">
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
<style>
|
13 |
+
body {
|
14 |
+
font-family: Arial, sans-serif;
|
15 |
+
text-align: center;
|
16 |
+
background-color: #f0f0f0;
|
17 |
+
margin: 0;
|
18 |
+
padding: 0;
|
19 |
+
}
|
20 |
+
h1 {
|
21 |
+
background-color: #4CAF50;
|
22 |
+
color: white;
|
23 |
+
padding: 20px;
|
24 |
+
margin: 0;
|
25 |
+
border-bottom: 2px solid #388E3C;
|
26 |
+
}
|
27 |
+
.input-row {
|
28 |
+
display: flex;
|
29 |
+
justify-content: center;
|
30 |
+
gap: 10px;
|
31 |
+
margin-top: 20px;
|
32 |
+
}
|
33 |
+
.input-row input[type="file"] {
|
34 |
+
padding: 10px;
|
35 |
+
font-size: 16px;
|
36 |
+
border: 1px solid #ccc;
|
37 |
+
border-radius: 5px;
|
38 |
+
}
|
39 |
+
.input-row input[type="checkbox"] {
|
40 |
+
margin-top: 5px;
|
41 |
+
}
|
42 |
+
.input-row label {
|
43 |
+
display: flex;
|
44 |
+
align-items: center;
|
45 |
+
color: #4CAF50;
|
46 |
+
font-size: 16px;
|
47 |
+
}
|
48 |
+
#uploadButton {
|
49 |
+
color: white;
|
50 |
+
background-color: #4CAF50;
|
51 |
+
border: none;
|
52 |
+
cursor: pointer;
|
53 |
+
padding: 10px 20px;
|
54 |
+
font-size: 16px;
|
55 |
+
border-radius: 5px;
|
56 |
+
margin-top: 20px;
|
57 |
+
}
|
58 |
+
#uploadButton:hover {
|
59 |
+
background-color: #388E3C;
|
60 |
+
}
|
61 |
.loader {
|
62 |
border: 16px solid #f3f3f3;
|
63 |
border-radius: 50%;
|
|
|
84 |
100% { transform: rotate(360deg); }
|
85 |
}
|
86 |
</style>
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
</head>
|
92 |
<body>
|
93 |
<h1>Upload CSV File</h1>
|