-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminEditMhs.php
61 lines (56 loc) · 1.63 KB
/
adminEditMhs.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
/*CSS for the body*/
#hugeCon {
display: flex;
}
#editSec {
margin-top: 4px;
background-color: lightgrey;
width : 90%;
}
#fieldS{
margin-top : 40px;
width:80%;
}
#fromCon{
margin-top : 5px;
margin-left : 20%;
}
#npmTxt{
width : 100%;
}
#passTxt{
width : 100%;
}
</style>
<meta charset="utf-8" />
<title>Edit Mahasiswa</title>
</head>
<body>
<!--Top NavBar-->
<?php include("Layout/header.php"); ?>
<div id="hugeCon">
<!--Mahasiswa edit section-->
<div id="editSec">
<form id="fromCon" method="get" action="">
<fieldset id="fieldS">
NPM
<br />
<input type="text" name="npmCon" placeholder="insert NPM" id="npmTxt"/>
<br />
Pass
<br />
<input type="text" name="passCon" placeholder="Insert new Password" id="passTxt" />
<br />
<input type="submit" id="searButt" name="subButt" value="Search" />
</fieldset>
</form>
</div>
<!--Profile Section-->
<?php include("Layout/adminProf.php");?>
</div>
</body>
</html>