Skip to content
Open

dump #17

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
7 changes: 7 additions & 0 deletions components/footer.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<!DOCTYPE html>

<style>
body {
padding-bottom: 70px;
}
</style>
<footer class="navbar justify-content-evenly fixed-bottom">
<i class="material-icons footer-active" onclick="location.href='../main.html'">home</i>
<i class="material-icons" onclick="location.href='../checkin_main.html'">check</i>
Expand Down
6 changes: 4 additions & 2 deletions components/headerNoBack.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<style>
<!DOCTYPE html>
<style>
.navbar-custom {
background-color: #204C7D;
color: white;
Expand Down Expand Up @@ -41,4 +42,5 @@
</div>
</div>
</div>
</nav>
</nav>

4 changes: 3 additions & 1 deletion components/headerWithBack.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<style>
<!DOCTYPE html>

<style>
.navbar-custom {
background-color: #204C7D;
color: white;
Expand Down
2 changes: 1 addition & 1 deletion messages.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h4 id="matchedUserName">John Doe</h4>
<input type="text" class="form-control mb-2" id="messageInput" placeholder="Type message here">
</div>
<div class="col-auto">
<button type="button" class="btn btn-primary mb-2" onclick="writeMessage()">Send</button>
<button id="sendButton" type="button" class="btn btn-primary mb-2" onclick="writeMessage()">Send</button>
</div>
</div>
</div>
Expand Down
8 changes: 5 additions & 3 deletions profile_fillout.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@
<script src="/components/footer.js" type="text/javascript" defer></script>

</head>

<style>

</style>
<body>
<div id="nav-placeholder"></div>
<div class="container">
<div class="container-fluid">
<div class="text-center my-3">
<h1>User Profile </h1>
</div>
Expand Down Expand Up @@ -92,8 +94,8 @@ <h1>User Profile </h1>
</div>
</form>
</div>
<div id="footer-placeholder"></div>

<div id="footer-placeholder"></div>
</body>

</html>
2 changes: 1 addition & 1 deletion scripts/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@ function createCard(title, message, sentAt, isSender) {
</div>`;
}

}
}