-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
112 lines (84 loc) · 3.75 KB
/
homepage.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>
</title>
<link rel="stylesheet" href="styles.css">
</head>
<body onload="onDocFinish()">
<div class="black font-white col-12">
<header>
<strong>WELCOME TO MY SITE</strong>
</header>
</div>
<div style="padding-top: 10px;">
<table class="content col-12">
<tr>
<table class="list col-12" id="studentlist">
<thead class="font-white">
<tr>
<th>Nama</th>
<th>NIM</th>
<th>Jurusan</th>
<th>Angkatan</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</tr>
</table>
</div><br>
<div class="formcontainer col-6 center">
<form onsubmit="event.preventDefault();onFormSubmit();" autocomplete="off" class="submitform">
<label>Nama</label><label class="validation-error hide" id="fullNameValidationError">This field is required.</label>
<input type="text" name="namamahasiswa" id="namamahasiswa">
<label>Nomor Induk</label>
<input type="text" name="NomorInduk" id="NomorInduk">
<label>Jurusan</label>
<input type="text" name="Jurusan" id="Jurusan">
<label>Angkatan</label>
<input type="text" name="Angkatan" id="Angkatan">
<input type="submit" value="Submit">
</form>
</div>
<div class="modalbox" id="modalbox">
<div class="modalboxcontent">
<form onsubmit="event.preventDefault();onModalSubmit();" autocomplete="off" class="editform">
<label>Nama</label>
<input type="text" name="namamahasiswa" id="namahasiswa">
<label>Nomor Induk</label>
<input type="text" name="NomorInduk" id="NoInduk">
<label>Jurusan</label>
<input type="text" name="Jurusan" id="Jurus">
<label>Angkatan</label>
<input type="text" name="Angkatan" id="Angkat">
<input type="submit" value="Submit" class="modalbutton" onclick="modalclose();">
</form>
<span class="closemodal">X</span>
</div>
</div>
<div class="alertdelete col-3">
<p>Data berhasil dihapus!</p>
<span class="closedelalert">X</span>
</div>
<div class="alertedit col-3">
<p>Data berhasil dirubah!</p>
<span class="closeedalert">X</span>
</div>
<div class="alertfailedit col-3">
<p>Data gagal dirubah!</p>
<span class="closeedfailalert">X</span>
</div>
<div class="alertins col-3">
<p>Data berhasil ditambahkan!</p>
<span class="closeinsalert">X</span>
</div>
<div class="alertinsfail col-3">
<p>Data gagal ditambahkan!</p>
<span class="closeinsfailalert">X</span>
</div>
<script src="script.js"></script>
</body>
</html>