forked from Kr321Manish/azure_project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
88 lines (77 loc) · 2.32 KB
/
index.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
<?php
if (array_key_exists("verify", $_POST)){
// echo "Ready";
$name=$_REQUEST['name'];
$mobno=$_REQUEST['mobno'];
session_start();
$_SESSION['name']=$name;
$_SESSION['mobno']=$mobno;
header("Location: user-chat.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>F&Q-Portal</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- for font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai+Looped:wght@500&display=swap" rel="stylesheet">
<!-- for smooth scroll -->
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll@15.0.0/dist/smooth-scroll.polyfills.min.js"></script>
</head>
<body>
<div id="preloader"></div>
<div class="banner">
<div class="col-1">
<a href="#chat-bot">Explore Chatbot</a>
<a href="#message">Discuss with experts</a>
<a href="admin.php">Login As Admin</a>
</div>
<img src="mail3.svg">
</div>
<div class="h1" id="chat-bot">
<h1>Let's F&Q with chat-bot</h1>
</div>
<div class="container">
<div class="img">
<img src="mail2.svg">
</div>
<div class="frame">
<iframe src=''></iframe>
</div>
</div>
<div class="h1" id="message">
<h1>Email us for more query</h1>
</div>
<div class="container-2">
<div class="message">
<form method="POST">
<div class="combo">
<label>Name:</label>
<input type="text" name="name" placeholder="your name"required>
</div>
<div class="combo">
<label>Mobile No:</label>
<input type="number" name="mobno" placeholder="your mobile number" required>
</div>
<!-- <textarea placeholder="Enter you query here in detail" required></textarea> -->
<button name="verify">Verify</button>
</form>
</div>
<div class="img">
<img src="mail4.svg">
</div>
</div>
<!-- for preloader -->
<script type="text/javascript">
var preloader=document.getElementById("preloader");
window.addEventListener('load', function() {
preloader.style.display="none";
});
</script>
</body>
</html>