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

Frond End Demo #59

Merged
merged 1 commit into from
Nov 1, 2023
Merged
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
84 changes: 84 additions & 0 deletions public/static/FrontEnd Demo/AddComplains.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@

.ComplainPageAdd {
display: flex;
flex-direction: column;
padding: 25px 28px;
margin-left: 2rem;
margin-right: 2rem;
border-radius: 1rem;
margin-bottom: 2rem;
background-color: #f3f3f3;
}

.ComplainPageAdd .frameProf {
display: flex;
/* padding: 25px 28px; */
/* margin-left: 1rem;
margin-right: 1rem; */
border-radius: 1rem;
/* margin-bottom: 2rem; */
background-color: #f3f3f3;
align-items: center;
}

.ComplainPageAdd .frameProf .profImg{
width: 75.25px;
height: 75.25px;
padding: 1rem;
}

.ComplainPageAdd .frameProf .profText{
color: #000;
text-align: justify;
font-size: 24px;
font-weight: 600;
line-height: 117.9%; /* 28.296px */
width: 1227px;
height: 29px;
}

.ComplainPageAdd .formComplainAdd{
display: flex;
flex-direction: column;
margin-left: 2rem;
}


.ComplainPageAdd .AddComplainsec2{
display: flex;
}

.ComplainPageAdd .box {
display: flex;
margin-top: 2rem;
height: 300px; /* Replace '300px' with your desired height value */
}

.ComplainPageAdd input[id=name] {

display: flex;
width: 1600px;
height: 44px;
padding: 4px 21px;
align-items: center;
border-radius: 10px;
border: none;
background: #FFF;
margin-bottom: 1rem;
font-size: 1.2rem;

}
input[id=Note] {

display: flex;
width: 1600px;
height: 280px;
padding: 4px 21px;
align-items:flex-start;
border-radius: 10px;
border: none;
background: #FFF;
margin-bottom: 1rem;
font-size: 1.2rem;

}
94 changes: 94 additions & 0 deletions public/static/FrontEnd Demo/AddComplains.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="AddComplains.css" rel="stylesheet">
<link href="navbar.css" rel="stylesheet">
</head>

<body>
<div class="navigation-bar">
<div class="logo">
<img src="imgs/Logo.png" alt="">
</div>
<div class="navbar">
<button class="navbut" id="homenav">Home</button>
<button class="navbut" id="dashboardnav">Dashboard</button>
<button class="navbut" id="guidenav">Guides</button>
<button class="navbut" id="rentnav">Rental Services</button>
<button class="navbut" id="blogsnav">Blogs</button>
<button class="navbut" id="tipsnav">Tips &amp; knowhows</button>
<button class="navbut" id="complaintsnav">Complaints</button>
</div>

<div class="navend">
<div class="notific">
<img src="imgs/9.png" alt="">
</div>
<div class="small-button-middle">
<button class="small-button">Login
</div>
</div>
</div>
</head>

<body>
<div class="ComplainPageAdd">
<div class="frameProf">
<div class="profImg">
<img src="imgs/5.png" alt="">
</div>
<div class="profText">Jenny Fernando</div>
</div>

<div class="AddComplainsec2">
<!-- <div class="profImg">
<img src="rectangle.png" alt="">
</div> -->
<div class="formComplainAdd">
<input type="text" id="name" name="name" placeholder="Topic">
<input type="text" id="name" name="name" placeholder="Location">

</div>
</div>

<div class="box">
<input type="text" id="Note" name="name" placeholder="Description">
</body>

<script>

document.getElementById("homenav").addEventListener("click", function () {
window.location.href = "Customer/CustomerHome.html";
});

document.getElementById("dashboardnav").addEventListener("click", function () {
window.location.href = "Customer/CustomerDashboard.html";
});

document.getElementById("guidenav").addEventListener("click", function () {
window.location.href = "Customer/CustomerGuideSearch.html";
});

document.getElementById("rentnav").addEventListener("click", function () {
window.location.href = "Customer/CustomerEquipment.html";
});

document.getElementById("blogsnav").addEventListener("click", function () {
window.location.href = "Customer/CustomerBlog.html";
});

document.getElementById("tipsnav").addEventListener("click", function () {
window.location.href = "Tips.html";
});

document.getElementById("complaintsnav").addEventListener("click", function () {
window.location.href = "AddComplains.html";
});

</script>

</html>
Loading