Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add required entity till the end process #208

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
74 changes: 74 additions & 0 deletions client/alumni stories.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alumni Stories - Entrepreneurs</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #333;
}
.story {
background: #fff;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.name {
font-size: 24px;
color: #4CAF50;
}
.content {
font-size: 16px;
color: #555;
}
footer {
text-align: center;
padding: 20px;
background: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>

<h1>Alumni Stories - Entrepreneurs</h1>

<div class="story">
<div class="name">Keshav Purohit</div>
<div class="content">
Keshav Purohit, a driven entrepreneur, founded a tech startup focused on developing innovative solutions for small businesses. His journey began at MIT WPU Pune, where he honed his skills in technology and business management. Today, his startup is recognized for its impactful contributions to digital transformation.
</div>
</div>

<div class="story">
<div class="name">Swanand Pisu</div>
<div class="content">
After completing his education, Swanand Pisu launched a sustainable fashion brand that emphasizes eco-friendly practices. Drawing inspiration from his time at MIT WPU Pune, Swanand's brand has gained popularity for its commitment to quality and sustainability, making a positive impact on the fashion industry.
</div>
</div>

<div class="story">
<div class="name">Dhananjay Pathak</div>
<div class="content">
Dhananjay Pathak ventured into the food tech industry by creating a unique platform that connects local farmers with consumers. His entrepreneurial spirit and passion for food security were nurtured during his studies at MIT WPU Pune. Dhananjay's initiative not only promotes local produce but also supports sustainable farming practices.
</div>
</div>

<footer>
&copy; 2024 MIT WPU Alumni Network. All rights reserved.
</footer>

</body>
</html>
102 changes: 102 additions & 0 deletions client/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Contact Us - MCA Alumni Network</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f2f5;
margin: 0;
padding: 0;
}

.container {
max-width: 600px;
margin: 40px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}

form {
display: flex;
flex-direction: column;
}

label {
font-weight: 500;
margin-bottom: 5px;
color: #333;
}

input, textarea {
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
width: 100%;
}

textarea {
height: 100px;
resize: vertical;
}

.contact-btn {
padding: 12px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}

.contact-btn:hover {
background-color: #45a049;
}

.note {
font-size: 14px;
color: #777;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>

<div class="container">
<h1>Contact Us</h1>

<form action="submit_contact.php" method="POST">
<label for="full-name">Full Name</label>
<input type="text" id="full-name" name="full-name" placeholder="Enter your full name" required />

<label for="email">Email Address</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required />

<label for="message">Your Message</label>
<textarea id="message" name="message" placeholder="Write your message here..." required></textarea>

<button type="submit" class="contact-btn">Send Message</button>
</form>

<p class="note">We will get back to you as soon as possible!</p>
</div>

</body>
</html>
104 changes: 104 additions & 0 deletions client/event.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MCA Alumni Event</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f2f5;
margin: 0;
padding: 0;
}

.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}

.event-details {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 20px;
}

.event-details img {
max-width: 100%;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-info {
flex: 1;
}

.event-info h2 {
color: #4CAF50;
margin-bottom: 10px;
}

.event-info p {
color: #555;
line-height: 1.6;
margin-bottom: 10px;
}

.event-info .date-time,
.event-info .location {
font-weight: bold;
color: #333;
}

.register-btn {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
text-align: center;
margin-top: 20px;
}

.register-btn:hover {
background-color: #45a049;
}
</style>
</head>
<body>

<div class="container">
<h1>Upcoming MCA Alumni Event</h1>

<div class="event-details">
<div class="event-info">
<h2>Networking & Career Development Workshop</h2>
<p>Join us for an exclusive workshop designed for MCA alumni, where you'll have the opportunity to network with fellow alumni and professionals, gain insights into the latest industry trends, and participate in interactive career development sessions.</p>

<p class="date-time">Date: October 28, 2024<br>Time: 10:00 AM - 4:00 PM</p>
<p class="location">Location: MIT WPU Pune, Auditorium Hall</p>

<a href="register.html" class="register-btn">Register Now</a>
</div>
<div class="event-img">
<img src="event.jpg" alt="Event Image">
</div>
</div>
</div>

</body>
</html>
Binary file added client/event.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading