-
Notifications
You must be signed in to change notification settings - Fork 1
/
adduser.php
56 lines (53 loc) · 1.63 KB
/
adduser.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
<!DOCTYPE html>
<html>
<head>
<title>Add user</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" type="text/css" rel="stylesheet">
-->
<style type="text/css">
*{
height:auto;
overflow: hidden;
padding:0px;
}
.btndanger1{
display: inline-block;
border-radius: 4px;
width: 120px;
height: 30px;
background-color: darkblue;
font-size: 20px;
background-color: lightgreen;
padding: 0px;
}
.btndanger1:hover{
background-color: skyblue;
cursor: pointer;
}
/*#myTable{
margin: 40px;
margin-left: 30%;
}*/
.myform{
padding:0px;
width:30%;
height: 20px;
text-align: center;
}
</style>
</head>
<body style="background-color: #5a6575;">
<h1 align="center" style="font-family: sans-serif;">Add details</h1><br><br>
<!-- <div style="position: relative; top: 20px;" > -->
<form width="auto" action="add.php" method = "post" align="center" position='fixed' autocomplete="off">
<div class="useradd">
<label for="name"> Name: </label> <input class="myform" type="text" id="name" name="name" placeholder="Names are Unique" required=""><br><br>
<label for="email">Email:</label> <input class="myform" type="text" id="email" name="email" placeholder="Email" required=""><br><br>
<label for="credit">Credits: </label> <input class="myform" type="text" id="credit" name="credit" placeholder="Credits" required=""><br><br>
<button class="btn" type="submit" name="useradd">Add details</button>
</div>
</form>
</div>
</body>
</html>