-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUpdate_Project.html
More file actions
84 lines (67 loc) · 1.91 KB
/
Update_Project.html
File metadata and controls
84 lines (67 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<title>PMC</title>
<style>
body{
margin: 0px;
padding: 0px;
background: url(img/23.jpg);
height: 1000px;
}
.vertical-menu {
width: 200px;
}
.form_format
{
font-size: 30px;
}
.vertical-menu a {
background-color: rgb(11, 47, 155);
margin: 10px;
color: rgb(47, 179, 255);
display: block;
padding: 20px;
width: 750px;
text-decoration: none;
}
.vertical-menu a.active {
background-color: #4CAF50;
color: white;
}
.rightnav{
width: 20%;
height: 10%;
text-align: right;
}
</style>
</head>
<body>
<nav class="navbar background">
<ul class="nav-list">
<div class="logo"><img src="img/SF_logo.jpeg" alt="Logo"></div>
<li><a href="menu.html">Home </a></li>
<li><a href="#about">About </a></li>
<li><a href="#contact">Contact Us </a></li>
<li><a href="#login">Login </a></li>
</ul>
</nav>
<center><h1>Welcome to Update Project portal</h1></center>
<center><h1>Enter Your Information</h1></center>
<div class="container">
<form method = "POST" action="http://localhost/DBMS/Update_Project.php">
<label for="Project_No">Enter the Project NO:</label><br>
<input type="number" id="Project_No" name="Project_No" value="" style="width:175px"><br>
<label for="Budget">Enter the New Budget:</label><br>
<input type="number" id="Budget" name="Budget" value="" style="width:175px"><br>
<label for="Start_Date">Enter the New Start Date:</label><br>
<input type="text" id="Start_Date" name="Start_Date" value="" style="width:175px"><br>
<label for="End_Date">Enter the New End Date:</label><br>
<input type="text" id="End_Date" name="End_Date" value="" style="width:175px"><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>