123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!doctype html>
- {% load static %}
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="description" content="">
- <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
- <meta name="generator" content="Hugo 0.79.0">
- <title>Upload | UpSharing</title>
- <link rel="canonical" href="https://getbootstrap.com/docs/5.0/examples/sign-in/">
- <!-- Bootstrap core CSS -->
- <!-- CSS only -->
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
- integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
- <meta name="theme-color" content="#7952b3">
- <style>
- .bd-placeholder-img {
- font-size: 1.125rem;
- text-anchor: middle;
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
- }
- @media (min-width: 768px) {
- .bd-placeholder-img-lg {
- font-size: 3.5rem;
- }
- }
- </style>
- <!-- Custom styles for this template -->
- <link href="{% static 'sharing/style.css' %}" rel="stylesheet">
- </head>
- <body class="text-center">
- <main class="form-signin">
- <form action="/upload/" method="POST" enctype="multipart/form-data">
- {% csrf_token %}
- <h1 class="h3 mb-3 fw-normal">UpSharing</h1>
- <input type="file" id="file" name="file" class="form-control" required autofocus>
- <button class="w-100 btn btn-lg btn-primary" type="submit">Upload</button>
- </form>
- </main>
- </body>
- </html>
|