apply bootstrap; apply corrections in information text
All checks were successful
Flask Run Test / Flask-Run-Test (push) Successful in 11s
All checks were successful
Flask Run Test / Flask-Run-Test (push) Successful in 11s
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
<title>ADrive Share</title>
|
<title>ADrive Share</title>
|
||||||
<script src="https://kit.fontawesome.com/972393379b.js" crossorigin="anonymous"></script>
|
<script src="https://kit.fontawesome.com/972393379b.js" crossorigin="anonymous"></script>
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="app">
|
<div class="app">
|
||||||
@@ -27,8 +28,8 @@
|
|||||||
Enter your credentials to access your dashboard and manage your files.
|
Enter your credentials to access your dashboard and manage your files.
|
||||||
</p>
|
</p>
|
||||||
<form id="loginForm" action="/login" method="post">
|
<form id="loginForm" action="/login" method="post">
|
||||||
Username: <input type="text" name="username" id="username" placeholder="📋" required aria-required>
|
Username: <input type="text" class="form-control" name="username" id="username" placeholder="📋" required aria-required>
|
||||||
Passphrase: <input type="password" name="password" id="password" placeholder="🗝️" aria-required>
|
Passphrase: <input type="password" class="form-control" name="password" id="password" placeholder="🗝️" aria-required>
|
||||||
<input type="submit" value="Sign In" id="uploadBtn">
|
<input type="submit" value="Sign In" id="uploadBtn">
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
@@ -70,5 +71,8 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||||
|
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@@ -7,6 +7,7 @@
|
|||||||
<title>ADrive Share</title>
|
<title>ADrive Share</title>
|
||||||
<script src="https://kit.fontawesome.com/972393379b.js" crossorigin="anonymous"></script>
|
<script src="https://kit.fontawesome.com/972393379b.js" crossorigin="anonymous"></script>
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="app">
|
<div class="app">
|
||||||
@@ -27,8 +28,8 @@
|
|||||||
With an account, you can manage up to 3GB in one dashboard. If you use up your limit, you can delete to free up space or upload files without the ability to manage them.
|
With an account, you can manage up to 3GB in one dashboard. If you use up your limit, you can delete to free up space or upload files without the ability to manage them.
|
||||||
</p>
|
</p>
|
||||||
<form id="loginForm" action="/register" method="post">
|
<form id="loginForm" action="/register" method="post">
|
||||||
Username: <input type="text" name="username" id="username" placeholder="📋" required aria-required>
|
Username: <input type="text" class="form-control" name="username" id="username" placeholder="📋" required aria-required>
|
||||||
Passphrase: <input type="password" name="password" id="password" placeholder="🗝️" aria-required>
|
Passphrase: <input type="password" class="form-control" name="password" id="password" placeholder="🗝️" aria-required>
|
||||||
Managable Storage Quota: <select name="quota_files" id="quota_files" class="fancy-select" disabled aria-disabled>
|
Managable Storage Quota: <select name="quota_files" id="quota_files" class="fancy-select" disabled aria-disabled>
|
||||||
<option value="3GB">3GB</option>
|
<option value="3GB">3GB</option>
|
||||||
</select>
|
</select>
|
||||||
@@ -72,5 +73,8 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||||
|
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<form>
|
<form>
|
||||||
<input type="text" id="codeInput">
|
<input type="text" class="form-control" id="codeInput">
|
||||||
<button type="button" value="Download" class="btn btn-primary" onclick="downloadClick()">Download</button>
|
<button type="button" value="Download" class="btn btn-primary" onclick="downloadClick()">Download</button>
|
||||||
</form>
|
</form>
|
||||||
{% if not loggedIn %}
|
{% if not loggedIn %}
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
<a href="/register" class="sign-in-button"
|
<a href="/register" class="sign-in-button"
|
||||||
style="text-decoration: none; background: rgb(32, 0, 139)">Register</a><br><br>
|
style="text-decoration: none; background: rgb(32, 0, 139)">Register</a><br><br>
|
||||||
<p style="color: gray; font-size: 11px; text-align: center;">Signing in is not required. You can at any time
|
<p style="color: gray; font-size: 11px; text-align: center;">Signing in is not required. You can at any time
|
||||||
register and sign in to manage your existing codes for free. You can manage up to 1GB of files.</p>
|
register and sign in to manage your existing codes for free. You can manage up to 3GB of files.</p>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="/dashboard" class="sign-in-button" style="text-decoration: none; background: blue">View
|
<a href="/dashboard" class="sign-in-button" style="text-decoration: none; background: blue">View
|
||||||
Dashboard</a>
|
Dashboard</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user