CoolFace
Apppublic

TNR-5/CloudFile

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
index.html39 linesDownload Raw Back to root
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>Cloud Storage</title>7    <style>8        /* Ваш стиль оформления */9    </style>10</head>11<body>12    <header>13        <h1>Cloud Storage</h1>14        <!-- Добавьте здесь логотип или другую информацию о вашем сервисе -->15    </header>16 17    <main>18        <section>19            <h2>Загрузить файл</h2>20            <form action="#" method="POST" enctype="multipart/form-data">21                <input type="file" name="file" id="file">22                <input type="submit" value="Загрузить">23            </form>24        </section>25 26        <section>27            <h2>Мои файлы</h2>28            <ul>29                <!-- Здесь будет список загруженных файлов -->30            </ul>31        </section>32    </main>33 34    <footer>35        <p>&copy; 2022 Cloud Storage. Все права защищены.</p>36    </footer>37</body>38</html>39