-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtechnicalagent.php
99 lines (87 loc) · 3.51 KB
/
technicalagent.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Waste | Agent</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="CSS/technicalagentform.css">
<link rel="stylesheet" href="CSS/header.css">
<link rel="stylesheet" href="CSS/footer.css">
</head>
<body>
<header class="head">
<div class="navbar">
<div class="logo">E-WASTE</div>
<div class="main-nav">
<ul>
<a href="index.html">
<li>HOME</li>
</a>
<a href="locate.html">
<li>LOCATE</li>
</a>
<a href="credit.php">
<li style="color: #1B6B95;">CREDIT</li>
</a>
<a href="about.php">
<li>ABOUT</li>
</a>
<a href="bot.html">
<li>BOT</li>
</a>
</ul>
</div>
<div class="user-account">
<a href="index-login.html"><i class="fa-solid fa-user"></i></a>
</div>
</div>
</header>
<div class="first-para-div">
<p>EXCHANGE OLD DEVICE</p>
</div>
<h2 class="center-text">Connect with our Technical Agent</h2>
<div class="forms">
<?php
include 'database/technical_agent.php';
?>
<form action="technicalagent.php" method="post">
<label for="name">Name</label><br>
<input type="text" id="name" name="name" placeholder="Enter your Name">
<br><br>
<label for="email">Email</label><br>
<input type="text" id="email" name="email" placeholder="Enter your Email">
<br><br>
<label for="contact">Mobile Number</label><br>
<input type="number" id="contact" name="contact" placeholder="Enter your Mobile Number">
<br><br>
<label for="address">Address</label><br>
<input type="text" id="address" name="address" placeholder="Enter your Address">
<br><br>
<label for="model">Model Number</label><br>
<input type="text" id="model" name="model" placeholder="Enter your Device Model Number">
<br><br>
<input class="btn-submit" name="submit" type="submit" value="Confirm" onclick="technical()">
</form>
</div>
<footer>
<div class="footer">
<div class="connect">
<p>CONNECT WITH US!</p>
</div>
<div class="social-links">
<a target="_blank" href="https://instagram.com/amit_sahu_13?igshid=OGQ5ZDc2ODk2ZA=="><i
class="fa-brands fa-instagram"></i> Instagram</a>
<a target="_blank" href="https://www.linkedin.com/in/amit-sahu-08ab62220/"><i
class="fa-brands fa-linkedin"></i> Linkedin</a>
<a target="_blank" href="https://www.youtube.com/watch?v=DpEiNciVLwM"><i
class="fa-brands fa-youtube"></i> Youtube</a>
</div>
<div class="copyright">
<p>COPYRIGHT © BYTECLEAN | 2023 - MEDICAPS UNIVERSITY</p>
</div>
</div>
</footer>
<script src="JAVA-SCRIPTS/alert.js"></script>
</body>
</html>