-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.php
44 lines (32 loc) · 1.06 KB
/
form.php
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
<!doctype>
<html>
<head>
<title>JOMWEB : CRUD Challenge</title>
<link rel="stylesheet" href="assets/normalize.css">
<link rel="stylesheet" href="assets/style.css">
<!--FONTS-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrapper">
<h1>Maklumat Pelajar</h1>
<a href="index.php" class="button-link btn-grey">SENARAI</a>
<form action="save.php" method="post">
<label>No. Matriks</label>
<input type="text" name="no_matriks"/>
<label>Nama Penuh</label>
<input type="text" name="nama_penuh"/>
<label>No. K/P</label>
<input type="text" name="no_kp"/>
<label>Kursus</label>
<select name="kursus">
<option value="bit">Business IT</option>
<option value="csc">Computer Sceince</option>
<option value="mbn">Mobile Network</option>
</select>
<input type="submit" name="submit" value="SIMPAN" class="button-link"/>
</form>
</div>
</body>
</html>