-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminInsert.php
52 lines (50 loc) · 1.36 KB
/
adminInsert.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<style>
#hugeCon {
padding-top : 20px;
display: flex;
}
#admnIns {
padding-top : 20px;
background-color: lightgrey;
flex: 1;
opacity: 0.8;
display: block;
width: 60%;
}
#fomrIns{
margin-left : 10%;
}
.forms{
width : 90%;
margin-left : 2%;
}
</style>
<head>
<meta charset="utf-8" />
<title>Insert Mahasiswa</title>
</head>
<body>
<!--NavBar-->
<?php include("Layout/header.php");?>
<div id="hugeCon">
<!--Edit Section-->
<div id="admnIns">
<form id="fomrIns" method="post" action="controller/InsertMhs.php" style="padding-left : 10px;">
NPM :<br />
<input class="forms" name="npm" type="text"/> <br /> <br />
Email :<br />
<input class="forms" name="emailMhs" type="email" /><br /> <br />
Password :
<input class="forms" name="passMhs" type="password" />
<br />
<br />
<input type="submit" value="Add" name="add"/>
</form>
</div>
<!--Profile Section-->
<?php include("Layout/adminProf.php");?>
</div>
</body>
</html>