-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7043fa
commit 110c40c
Showing
2 changed files
with
58 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> | ||
|
||
<link rel="stylesheet" href="/css/homePage.css"> | ||
<link rel="stylesheet" href="/public/css/homePage.css"> | ||
|
||
<!-- Fonts --> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
|
@@ -76,11 +76,7 @@ <h3>By CoffeeCollab</h3> | |
<form action="/create-user" method="POST" > | ||
|
||
<h2 class="registerTitle">Register Now!</h2> | ||
<input type="radio" class="btn-check" name="userType" id="manager" autocomplete="off" checked> | ||
<label class="btn btn-outline-primary" for="manager">Manager</label> | ||
|
||
<input type="radio" class="btn-check" name="userType" id="employee" autocomplete="off"> | ||
<label class="btn btn-outline-primary" for="employee">Employee</label> | ||
|
||
|
||
<div class="form-floating"> | ||
<input type="text" autocomplete="off" name="fullname" class="input" id="registrationFullName" placeholder="FullName" required> | ||
|
@@ -91,7 +87,10 @@ <h2 class="registerTitle">Register Now!</h2> | |
<input type="email" autocomplete="off" name="email" class="input" id="registrationEmail" placeholder="email" required> | ||
|
||
</div> | ||
<div class="form-floating"> | ||
<input type="tel" autocomplete="off" name="sinNumber" class="input" id="sin" placeholder="sinNumber" required> | ||
|
||
</div> | ||
<div class="form-floating"> | ||
<input type="password" autocomplete="off" name="password" class="input" id="registrationPassword" placeholder="Password" required> | ||
|
||
|
@@ -150,23 +149,23 @@ <h2 class="registerTitle">Register Now!</h2> | |
<div id="carouselExample" class="carousel slide"> | ||
<div class="carousel-inner"> | ||
<div class="carousel-item active"> | ||
<img src="/pictures/toronto.webp" class="d-block w-100" alt="..."> | ||
<img src="/public/pictures/toronto.webp" class="d-block w-100" alt="..."> | ||
<div class="carousel-caption d-none d-md-block " id="text-context"> | ||
<h5 >Why did we decide to do a time sheet App? </h5> | ||
<p>in back then we used to work in a restaurant where all the time sheet managed by paper sheets , | ||
and we would always think about how easy it'd be with an app so one day we came up with an idea of a time sheet app</p> | ||
</div> | ||
</div> | ||
<div class="carousel-item"> | ||
<img src="/pictures/toronto2.jpg" class="d-block w-100" alt="..."> | ||
<img src="/public/pictures/toronto2.jpg" class="d-block w-100" alt="..."> | ||
<div class="carousel-caption d-none d-md-block " id="text-context"> | ||
<h5 >what Features did we use for this project?</h5> | ||
<p>HTML,CSS,Bootstrap,JS,MongoDB</p> | ||
</div> | ||
</div> | ||
<div class="carousel-item"> | ||
|
||
<img src="/pictures/toronto3.jpg" class="d-block w-100" alt="..."> | ||
<img src="/public/pictures/toronto3.jpg" class="d-block w-100" alt="..."> | ||
<div class="carousel-caption d-none d-md-block " id="text-context"> | ||
<h5 >Who's CoffeeCollab? </h5> | ||
<p>Two friends who are trying to learn new things from each other and gain some experience by doing new projects. </p> | ||
|
@@ -188,9 +187,9 @@ <h5 >Who's CoffeeCollab? </h5> | |
</div> | ||
<div class="row row-col-1 row-flex"> | ||
|
||
<div class="col row-12 offset-2 gy-4 " id="footer"> | ||
<div class="left-footer col-3"> | ||
<img src="/pictures/CoffeeCollab.jpeg" > | ||
<div class="col " id="footer"> | ||
<div class="left-footer "> | ||
<img src="/public/pictures/CoffeeCollab.jpeg" > | ||
<a href="mailto:[email protected]"> <h5>Contact us</h5></a> | ||
<p>© 2023 CoffeeCollab, Inc</p> | ||
</div> | ||
|
@@ -216,6 +215,6 @@ <h5 >Who's CoffeeCollab? </h5> | |
|
||
|
||
</div> | ||
<script src="/jsForPages/index.js"></script> | ||
<script src="/public/jsForPages/index.js"></script> | ||
</body> | ||
</html> |