Skip to content

Commit 9cc2a69

Browse files
Version1 of Mediserve
1 parent a960c4e commit 9cc2a69

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1984
-0
lines changed

Login.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Login Page</title>
6+
<link rel="stylesheet" href="login.css">
7+
8+
</head>
9+
<body onload="document.getElementById('login-form').style.display='block'" onclick="loaded()">
10+
<div class="full-page">
11+
12+
<div id='login-form'class='login-page'>
13+
<div class="form-box">
14+
<div class='button-box'>
15+
<div id='btn'></div>
16+
<button type='button'onclick='login()'class='toggle-btn'>Log In</button>
17+
<button type='button'onclick='register()'class='toggle-btn'>Register</button>
18+
</div>
19+
<form id='login' class='input-group-login' action="index.html">
20+
<input type='text'class='input-field'placeholder='Email Id' required >
21+
<input type='password'class='input-field'placeholder='Enter Password' required>
22+
<input type='checkbox'class='check-box'><span>Remember Password</span>
23+
<button type='submit'class='submit-btn' >Log in</button>
24+
</form>
25+
<form id='register' class='input-group-register'>
26+
<input type='text'class='input-field'placeholder='First Name' required>
27+
<input type='text'class='input-field'placeholder='Last Name ' required>
28+
<input type='email'class='input-field'placeholder='Email Id' required>
29+
<input type='password'class='input-field'placeholder='Enter Password' required>
30+
<input type='password'class='input-field'placeholder='Confirm Password' required>
31+
<input type='checkbox'class='check-box'><span>I agree to the terms and conditions</span>
32+
<button type='submit'class='submit-btn'>Register</button>
33+
</form>
34+
</div>
35+
</div>
36+
</div>
37+
<script>
38+
var x=document.getElementById('login');
39+
var y=document.getElementById('register');
40+
var z=document.getElementById('btn');
41+
function register()
42+
{
43+
x.style.left='-400px';
44+
y.style.left='50px';
45+
z.style.left='110px';
46+
}
47+
function login()
48+
{
49+
x.style.left='50px';
50+
y.style.left='450px';
51+
z.style.left='0px';
52+
}
53+
document.getElementsByClassName('submit-btn').onclick
54+
</script>
55+
56+
57+
</body>
58+
</html>

chatbot.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<!-- <link rel="icon" type="image/x-icon" href="images/logo.png"> -->
7+
<link rel = "icon" href ="images/logo.png" type = "image/x-icon">
8+
<title>Mediserve- India ki apni Pharmacy</title>
9+
<link rel="stylesheet" href="style.css" />
10+
<script src="https://kit.fontawesome.com/86b20e3fb3.js" crossorigin="anonymous"></script>
11+
<!-- for box Icons -->
12+
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
13+
<title>ChatBot</title>
14+
</head>
15+
<body>
16+
<header>
17+
<nav>
18+
<img src="images/logo2.png" alt="logo class" class="logoimg"/>
19+
<div class="search_box">
20+
<select id="delivery">
21+
<option value="" >Deliver to <strong>110008</strong></option>
22+
<option value="" >Bangalore</option>
23+
<option value="" >New Delhi</option>
24+
<option value="">Pune</option>
25+
<option value="" >kolkata</option>
26+
</select>
27+
<input type="search" placeholder="Search for Medicine & wellness Products">
28+
29+
</div>
30+
<ol>
31+
32+
<li><a href="Login.html"><i class="fa-solid fa-circle-user" ></i> Hello, Login</a></li>
33+
<li><a href="chatbot.html"><i class="bx bxs-bot bx-flip-horizontal"></i> ChatBot</a></li>
34+
<li><a href="#" id="cart-icon"><i class="bx bxs-home-alt-2" ></i> Home</a></li>
35+
36+
</ol>
37+
<!-- Cart -->
38+
39+
</nav>
40+
</header>
41+
<iframe src='https://webchat.botframework.com/embed/LangaBotService-bot?s=tWub4dMTSs8.dPsXJqx6g7qdNav8IsuBOXcXNHjlnQvhE1bsOoPRIJs' style='min-width: 400px; width: 100%; min-height: 500px;'></iframe>
42+
43+
<script>
44+
window.alert("Scroll down for chat with the ChatBot");
45+
</script>
46+
</body>
47+
</html>

css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)