-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (29 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<title>Drive2Link Converter</title>
</head>
<body>
<div class="container">
<img src="assets/img/back_asset_1.png" class="back_asset">
<div class="logo">Drive2Link</div>
<div class="converter_outer">
<div class="inputContainer">
<label for="inputBox">Enter your sharing URL:</label>
<input type="text" class="inputFields" placeholder="Paste Your Drive link Here..." id="input_box"/><br>
<label for="inputBox">Output Link:</label>
<input type="text" class="inputFields" id="output_box"/>
<button class="Submit" id="convert-button">Convert</button>
<br>
</div>
</div>
<span id="message-container"></span>
<div class="footer">Copyright 2023 <a href="https://clicktogain.tech/">ClickToGain</a>, All Rights Reserved</div>
</div>
<script src="assets/js/script.js" async></script>
</body>
</html>