-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./css/main.css">
<title>Hoseki Admin</title>
</head>
<body>
<section class="nav drag" id="titleBar">
<img src="./src/images/[email protected]" />
<div class="btn-div">
<button class="alert no-drag">Notification</button>
<button class="no-drag">Click Me</button>
</div>
</section>
<div class="no-drag">
<h1 class="main-msg">Hello Hoseki! Meh</h1>
<p>Welcome to your Electron application v1.4.6</p>
<p id="p1">First paragraph</p>
<p id="p2">Second paragraph</p>
<p id="p3">Third paragraph</p>
</div>
<div class="button-container">
<button id="openDialogButton">
Enter your info.
</button>
</div>
<dialog id="infoDialog">
<div class="input-container">
<input id="nameInput" type="text" placeholder="Enter your name" />
<input id="ageInput" type="text" placeholder="Enter your age" />
<input id="jobInput" type="text" placeholder="Enter your job" />
</div>
<div class="dialog-button-container">
<button id="okButton" type="submit">
OK
</button>
</div>
</dialog>
<div class="table jobs">
<div class="heading">
<div class="cell">Name</div>
<div class="cell">Age</div>
<div class="cell">Job</div>
</div>
</div>
<script type="module" src="/src/renderer.js"></script>
</body>
</html>