36 lines
2.3 KiB
Plaintext
36 lines
2.3 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
<title>Authorization</title>
|
|
<meta property="og:site_name" content="ShareX Upload Server">
|
|
<meta property="og:title" content="Password Protected Media">
|
|
<meta property="og:description" content="Provide password to view contents">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=ABeeZee">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Actor">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.2/dist/jquery.fancybox.min.css">
|
|
<link rel="stylesheet" href="assets/css/styles.min.css">
|
|
</head>
|
|
|
|
<body style="background-color: rgb(59,59,59);">
|
|
<div class="login-clean" style="background-color: rgb(59,59,59);">
|
|
<form action="/pupload" method="post" style="background-color: rgb(51,51,51);">
|
|
<h2 class="sr-only">Login Form</h2>
|
|
<div class="illustration"><i class="fa fa-photo" style="color: rgb(230,94,94);"></i></div>
|
|
<div class="form-group"><input class="form-control" type="password" name="password" placeholder="Password" id="password" style="background-color: rgb(51,51,51);"></div>
|
|
<div class="form-group"><input class="form-control" type="email" name="file" value="<%= fileName; %>" id="file" style="background-color: rgb(51,51,51);" readonly></div>
|
|
<div class="form-group"><button class="btn btn-primary btn-block" type="submit" style="background-color: rgb(230,94,94);">Authorize</button></div>
|
|
</form>
|
|
</div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.2/dist/jquery.fancybox.min.js"></script>
|
|
</body>
|
|
|
|
</html> |