-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin-user-node .html
More file actions
54 lines (32 loc) · 1.11 KB
/
Copy pathadmin-user-node .html
File metadata and controls
54 lines (32 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Create User Node</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://www.w3schools.com/lib/w3data.js"></script>
</head>
<body>
<div w3-include-html="admin-header.html"></div>
<div class="container">
<div class="col-sm-4"></div>
<div class="col-sm-4"><form>
<div class="form-group" style="text-align: center">
<label for="user-node">User Node Name:</label>
<input type="text" class="form-control" id="user-node">
</div>
<div style="text-align: center">
<button type="submit" class="btn btn-success" >Create</button></div>
</form></div>
<div class="col-sm-4"></div>
</div>
<br><br><br>
<div w3-include-html="footer.html"></div>
<script>
w3IncludeHTML();
</script>
</body>
</html>