-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (59 loc) · 2.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DoShare - Share files comfortably with cloud</title>
<link rel="stylesheet" href="sundar.css">
<script src="https://kit.fontawesome.com/c075e7b385.js" crossorigin="anonymous" style="height: 70px ;"></script>
</head>
<body>
<div class="logo"><img src="My project.png" alt="logo" draggable="false"></div>
<section class="upload-container">
<div class="drop-zone">
<div class="icon-container">
<img src="./file.svg" alt="icon" class="center" draggable="false">
<img src="./file.svg" alt="icon" class="left" draggable="false">
<img src="./file.svg" alt="icon" class="right" draggable="false">
</div><input type="file" id="inputFile">
<div class="title">Drag Your Files Here Or <span class="browse-button">Browse</span></div>
</div>
<div class="progress-container">
<div class="bg-progress">
<div class="inner-container">
<div class="title">Uploading....</div>
<div class="percent-container"><span id="percent">0</span>%</div>
<div class="progress-bar"></div>
</div>
</div>
</div>
<div class="sharing-container">
<p class="expire">Link expires in 24 hours</p>
<div class="input-container"><input type="text" id="fileURL" readonly>
<img src="copy-icon.svg" alt="copy-icon" id="copy-button">
</div>
<!-- email sending section for future -->
<!-- <p class="email">Or send by Email</p>
<div class="email-container">
<form id="email-form">
<div class="field">
<label for="sender"> Your Email</label>
<input type="email" required name="from-email" id="sender">
</div>
<div class="field">
<label for="Recipient">Recipient Email</label>
<input type="email" required name="to-email" id="Recipient">
</div>
<button type="submit">Send</button>
</form>
</div> -->
<!-- ------------------------- -->
</div>
</section>
<div class="bg-side"></div>
<div class="toast">Copied to clipboard</div>
<div class="bottom-div"></div>
<script src="index.js"></script>
</body>
</html>