Update up_fa_vk.html
Browse files- up_fa_vk.html +68 -0
up_fa_vk.html
CHANGED
|
@@ -6,7 +6,75 @@
|
|
| 6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
<title>File Upload</title>
|
| 8 |
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
</head>
|
|
|
|
| 10 |
<body>
|
| 11 |
<div id="progressBarContainer">
|
| 12 |
<div id="progressBar">0%</div>
|
|
|
|
| 6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
<title>File Upload</title>
|
| 8 |
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
|
| 9 |
+
|
| 10 |
+
<style>
|
| 11 |
+
body {
|
| 12 |
+
font-family: Arial, sans-serif;
|
| 13 |
+
text-align: center;
|
| 14 |
+
background-color: #f0f0f0;
|
| 15 |
+
margin: 0;
|
| 16 |
+
padding: 0;
|
| 17 |
+
}
|
| 18 |
+
h1 {
|
| 19 |
+
background-color: #4CAF50;
|
| 20 |
+
color: white;
|
| 21 |
+
padding: 20px;
|
| 22 |
+
margin: 0;
|
| 23 |
+
border-bottom: 2px solid #388E3C;
|
| 24 |
+
}
|
| 25 |
+
button[type="submit"] {
|
| 26 |
+
color: white;
|
| 27 |
+
background-color: #4CAF50;
|
| 28 |
+
border: none;
|
| 29 |
+
cursor: pointer;
|
| 30 |
+
padding: 10px 20px;
|
| 31 |
+
font-size: 16px;
|
| 32 |
+
border-radius: 5px;
|
| 33 |
+
margin-top: 20px;
|
| 34 |
+
}
|
| 35 |
+
button[type="submit"]:hover {
|
| 36 |
+
background-color: #388E3C;
|
| 37 |
+
}
|
| 38 |
+
#mediaContainer {
|
| 39 |
+
margin-top: 20px;
|
| 40 |
+
display: flex;
|
| 41 |
+
justify-content: center;
|
| 42 |
+
align-items: center;
|
| 43 |
+
flex-direction: column;
|
| 44 |
+
max-width: 100%;
|
| 45 |
+
height: auto;
|
| 46 |
+
}
|
| 47 |
+
#mediaContainer img, #mediaContainer video {
|
| 48 |
+
max-width: 100%;
|
| 49 |
+
height: auto;
|
| 50 |
+
object-fit: contain;
|
| 51 |
+
}
|
| 52 |
+
#imageUrl {
|
| 53 |
+
margin-top: 20px;
|
| 54 |
+
font-size: 16px;
|
| 55 |
+
color: #333;
|
| 56 |
+
cursor: pointer;
|
| 57 |
+
text-decoration: underline;
|
| 58 |
+
}
|
| 59 |
+
#progressBarContainer {
|
| 60 |
+
width: 80%;
|
| 61 |
+
margin: 20px auto;
|
| 62 |
+
background-color: #ddd;
|
| 63 |
+
border-radius: 13px;
|
| 64 |
+
padding: 3px;
|
| 65 |
+
}
|
| 66 |
+
#progressBar {
|
| 67 |
+
width: 0%;
|
| 68 |
+
height: 20px;
|
| 69 |
+
background-color: #4CAF50;
|
| 70 |
+
border-radius: 10px;
|
| 71 |
+
text-align: center;
|
| 72 |
+
line-height: 20px;
|
| 73 |
+
color: white;
|
| 74 |
+
}
|
| 75 |
+
</style>
|
| 76 |
</head>
|
| 77 |
+
|
| 78 |
<body>
|
| 79 |
<div id="progressBarContainer">
|
| 80 |
<div id="progressBar">0%</div>
|