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
Binary file not shown.
1,016 changes: 1,016 additions & 0 deletions .vs/Group_10_Assignment_LookAndFeel/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added .vs/slnx.sqlite
Binary file not shown.
138 changes: 138 additions & 0 deletions home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Consumer Complaint Database</title>
<style>
/* Resetting some default browser styles */
body, h1, h2, h3, p {
margin: 0;
padding: 0;
}

body {
font-family: 'Arial', sans-serif;
background-color: #f4f6f8;
color: #3a3a3a;
display: flex; /* New */
flex-direction: column; /* New */
min-height: 100vh; /* New */
}

header {
background: linear-gradient(45deg, #1a1a2e, #16213e);
color: #e0e0e0;
padding: 30px 0;
text-align: center;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

nav {
display: flex;
justify-content: space-around;
padding: 20px 0;
background-color: #fff;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
}

nav a {
color: #5a5a5a;
padding: 0 10px;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}

nav a:hover {
color: #333;
}

.banner {
flex: 1; /* New */
background-color: #f4f6f8;
padding: 80px 0;
text-align: center;
}

.banner h2 {
margin-bottom: 20px;
font-size: 2.5em;
}

.banner p {
margin-bottom: 40px;
font-size: 1.1em;
color: #666;
}

.search-bar {
max-width: 500px;
margin: 0 auto;
display: flex;
border: 1px solid #ccc;
border-radius: 50px;
overflow: hidden;
background-color: #fff;
}

.search-bar input {
flex: 1;
padding: 15px 20px;
border: none;
font-size: 1em;
outline: none;
}

.search-bar button {
padding: 15px 20px;
border: none;
background-color: #007bff;
color: #fff;
cursor: pointer;
border-radius: 0 50px 50px 0;
transition: background-color 0.3s;
}

.search-bar button:hover {
background-color: #0056b3;
}

footer {
background-color: #1a1a2e;
color: #e0e0e0;
text-align: center;
padding: 30px 0;
}
</style>
</head>

<body>
<header>
<h1>Consumer Complaint Database</h1>
</header>

<nav>
<a href="home.html">Home</a>
<a href="search.html">Search Complaints</a>
<a href="submit.html">Submit a Complaint</a>
<a href="aboutus.html">About Us</a>
<a href="graph.html">Graph</a>
</nav>

<div class="banner">
<h2>Voice Your Concerns. Seek Resolutions.</h2>
<p>Your platform to search and submit complaints about consumer financial products and services.</p>
<div class="search-bar">
<input type="text" placeholder="Search complaints...">
<button>Search</button>
</div>
</div>

<footer>
&copy; 2023 Consumer Complaint Database | Follow us on: [Social Icons Here]
</footer>
</body>

</html>
Binary file added img/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/DataModel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.