-
Notifications
You must be signed in to change notification settings - Fork 0
/
nfs.html
29 lines (23 loc) · 834 Bytes
/
nfs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>File System</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<div class="container ">
<form action="scripts/nfs.py">
<h1>Enter the IP-address for web server sharing </h1>
<div class="form-group">
<label for="exampleInputEmail1">IP-Address :</label>
<input required pattern="^([0-9]{1,3}\.){3}[0-9]{1,3}$" type="text" class="form-control" name='ip' id="exampleInputEmail1" placeholder="xxx.xxx.xxx.xxx">
</div>
<input type="submit" class="btn btn-primary" value="Deploy">
</form>
</div>
<script src="assets/js/jquery.min.js" > </script>
<script src="assets/js/bootstrap.min.js" > </script>
</body>
</html>