-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (38 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>Pholder: Home</title>
<style>
html, body {
margin: 0;
height: 100%;
}
td {
word-wrap:break-word !important;
}
</style>
</head>
<body ondrop="dropFile(event)" ondragover="dragOverFile(event);">
<div class="w3-modal" id="modal01">
<div class="w3-modal-content" wrap="hard" width="60%">
<p style="text-align: center;">Drag and drop your images here</p>
</div>
</div>
<div class="w3-modal" id="detail-modal" wrap="hard">
<div class="w3-modal-content" id="detail-modal-inside">
<p>Hi</p>
</div>
</div>
<div class="w3-top w3-bar" style="background-color: white !important;">
<h1 style="font-size: 8pt; text-align: left; padding-bottom: 0 !important;"> 📁 drag & drop to open</h1>
<input id="searchbar" type="text" placeholder="Search by keywords or date..." class="w3-input w3-border-black" style="padding-top: 0 !important">
</div>
</br>
<div class="w3-container w3-row" id="gallery" style="padding-top:40px">
<!---->
</div>
</br>
<script src="./renderer.js"></script>
</body>
</html>