-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUCD.php
More file actions
104 lines (90 loc) · 2.02 KB
/
UCD.php
File metadata and controls
104 lines (90 loc) · 2.02 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>CIS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="assests/registration.css">
<style>
body
{
background-image: url("img/1d.jpg");
background-repeat: no-repeat;
background-size:cover;
}
h1
{
color:white;
font-size: 70px;
margin-top: 20%;
}
nav
{
width:100%;
height:80px;
background-color:darkblue;
line-height: 50px;
}
nav ul
{
float: right;
margin-right:30px
}
nav ul li
{
list-style-type: none;
display:inline-block;
transition: 0.8s all;
}
nav ul li a
{
text-decoration: none;
color: #fff;
padding: 40px;
}
nav ul li:hover
{
background-color: #f39d1a;
}
footer
{
text-align: center;
padding: 3px;
background-color: black;
color: white;
margin-top: 20%;
margin-right:
}
</style>
</head>
<body>
<div id="main">
<nav>
<ul>
<li><a href="#">Dashboard</a></li>
<li><a href="logout.php">logout</a></li>
</ul>
</nav>
</div>
<form>
<fieldset>
<legend id="reg">UPDATE</legend>
<br>
<label for="CD"> COMPANY ID</label>
<input type="text" name="USN" placeholder="Enter Company name" required autocomplete="off" >
<label for="Name"> NAME </label>
<input type="text" name="Name" placeholder="Enter Name" required autocomplete="off">
<label for="Email"> EMAIL </label>
<input type="email" name="Email" placeholder="Enter Email-Id" autocomplete="off">
<label for="Phone"> PHONE</label>
<input type="text" name="Phone" placeholder="Enter Phone no" autocomplete="off">
<br>
<button type="submit" name="submit"><b> SUBMIT </b> </button>
<br>
<br>
</fieldset>
</form>
<footer>
<p>CopyRight@2023 InternshipSurveySystem.in</p>
</footer>
</body>
</html>