-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.php
More file actions
66 lines (48 loc) · 3.69 KB
/
create.php
File metadata and controls
66 lines (48 loc) · 3.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Admin Dashboard</title>
<style>
table td, table th{
vertical-align:middle;
text-align:right;
padding:20px!important;
}
</style>
</head>
<body>
<header style="background-color:#143A52;">
<link rel="icon" type="image/x-icon" href="images/tc_logo.jpg" >
<img src="images/tc-logo.png" style="width: 8%; height: 100%;background-color:#fff">
<span class="sign"><a href="logout.php" onmouseover="this.style.color = '#C8D6DF'" onmouseout="this.style.color = '#fff'">Sign Out</a></span>
<span class="sign"><a href="index.html" onmouseover="this.style.color = '#C8D6DF'" onmouseout="this.style.color = '#fff'">Home</a></span>
<span class="sign"><a href="#" onmouseover="this.style.color = '#fff'" onmouseout="this.style.color = '#fff'" style="pointer-events: none;">Tech Con Consulting Portal Welcome to Admin Dashboard</a></span>
<!-- <span class="sign"><a href="#">About</a></span> -->
</header>
<br><br>
<div class="container my-5">
<div class="d-flex justify-content-between my-4">
<h1>Add New Project</h1>
<div>
<a href="admin.php" class="btn btn-outline-dark">Back</a>
</div>
</div>
<form action="process.php" method="post">
<div class="form-elemnt my-4">
<input type="text" class="form-control" name="project_name" placeholder="Project Name" required>
</div>
<div class="form-elemnt my-4">
<input type="text" class="form-control" name="project_address" placeholder="Project Address" required>
</div>
<div class="form-element my-4">
<input type="submit" name="create" value="Add Project" class="btn btn-dark">
</div>
</form>
</div>
</body>
</html>