Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions Easy/Utsav/signup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.signup-container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
.signup-container h2 {
margin-bottom: 20px;
}
.signup-container input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
.signup-container button {
width: 100%;
padding: 10px;
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
.signup-container button:hover {
background-color: #218838;
}
</style>
</head>
<body>
<div class="signup-container">
<h2>Sign Up</h2>
<form>
<input type="text" placeholder="Full Name" required>
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Password" required>
<button type="submit">Sign Up</button>
</form>
</div>
</body>
</html>
Empty file added utsav/signup.html
Empty file.
85 changes: 85 additions & 0 deletions utsav/ui.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatBot UI</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #343541;
color: white;
display: flex;
flex-direction: column;
height: 100vh;
}
.chat-container {
display: flex;
flex-direction: column;
max-width: 800px;
width: 100%;
margin: auto;
height: 100%;
}
.chat-box {
flex-grow: 1;
overflow-y: auto;
padding: 20px;
display: flex;
flex-direction: column;
gap: 15px;
}
.message {
padding: 10px 15px;
border-radius: 10px;
max-width: 70%;
}
.bot {
background-color: #444654;
align-self: flex-start;
}
.user {
background-color: #0e76fd;
align-self: flex-end;
}
.input-box {
display: flex;
padding: 10px;
background-color: #202123;
}
.input-box input {
flex-grow: 1;
padding: 10px;
border: none;
border-radius: 5px;
font-size: 16px;
background-color: #40414f;
color: white;
outline: none;
}
.input-box button {
margin-left: 10px;
padding: 10px 15px;
border: none;
background-color: #0e76fd;
color: white;
border-radius: 5px;
cursor: not-allowed;
}
</style>
</head>
<body>
<div class="chat-container">
<div class="chat-box">
<div class="message bot">Hello! How can I assist you today?</div>

</div>
<div class="input-box">
<input type="text" placeholder="Type a message..." disabled>
<button disabled>Send</button>
</div>
</div>
</body>
</html>