37 lines
931 B
HTML
37 lines
931 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
|
|
<title>MyDrive</title>
|
|
<link rel="icon" href="/images/icon.png">
|
|
<link rel="shortcut icon" type="image/png" href="/images/icon.png">
|
|
<link rel="shortcut icon" sizes="192x192" href="/images/icon.png">
|
|
<link rel="apple-touch-icon" href="/images/icon.png">
|
|
<link rel="stylesheet" type="text/css" href="./src/styles.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main-div">
|
|
|
|
<div id="box-div">
|
|
|
|
<p id="title">Enter Encryption Password</p>
|
|
<form id="form-submit">
|
|
<input id="input-password" type="password" placeholder="Password"/>
|
|
<button id="submit-button">Submit</button>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
<!-- <script src="/socket.io/socket.io.js"></script> -->
|
|
<script src="./dist/bundle.js"></script>
|
|
</body>
|
|
|
|
</html> |