-
Notifications
You must be signed in to change notification settings - Fork 0
/
createUser.html
65 lines (56 loc) · 1.8 KB
/
createUser.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
<html>
<head>
<title>
</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script> <style>
.card{
margin-top: 7%;
width: 500px ;
}
input{
padding:5px;
width: 300px;
border:none;
border-bottom: 2px solid #1F2937;
background-color: white;
}
.card div{
padding:20px;
}
.name{
text-align: center;
}
.loc{
align-items: center;
}
</style>
</script>
</head>
<body>
<center>
<div class="card shadow rounded">
<div class="name">
<h1>Create User</h1>
</div>
<div class="loc">
<input class="shadow-sm rounded" name="username" id="username" placeholder="Username">
</datalist>
</div>
<div><input type="password" class="shadow-sm rounded" Placeholder="Password" name="password" maxlength="50" size="30"></div>
<div class="privilege">
<input class="shadow-sm rounded" list="privilege" name="privilege" placeholder="Choose privilege">
<datalist id="privilege">
<option value="1">
<option value="2">
</datalist>
</div>
<div>
<input type="Submit" class="shadow rounded" class="btn" value="Create" style="width:100px;background-color:#1F2937;color:whitesmoke;margin-bottom:5%;">
</div>
</div>
</center>
</body>
</html>