-
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
a5e76f5
commit fd9c22e
Showing
8 changed files
with
109 additions
and
7 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
Binary file not shown.
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
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 |
---|---|---|
|
@@ -71,3 +71,7 @@ button:hover, a:hover { | |
background-color: white; | ||
color: #3c3c3c; | ||
} | ||
|
||
#search { | ||
width: 5%; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Dogstagram</title> | ||
<!--<link rel='shortcut icon' href='../index.ico' type='image/x-icon'/>--> | ||
<link rel="stylesheet" type="text/css" href="../static/style.css"/> | ||
|
||
<!-- Add the Firebase and Cloud Firestore libraries to app --> | ||
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-app.js"></script> | ||
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-firestore.js"></script> | ||
|
||
<!-- include jquery--> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | ||
</head> | ||
<body> | ||
<div class="topBar"> | ||
<img id="profilePic" src="../static/default.jpg" onclick="logOut()"></img> | ||
Welcome to <span id="username"> {{ user }} </span>'s page!<br> | ||
<br><button type="button" onclick="returnHome()">Return Home</button> | ||
|
||
<div id="upload" style="visibility: hidden;"> | ||
<form action="/upload" method="post" enctype="multipart/form-data"> | ||
<input type="file" name="image" id="image"> | ||
<input type="submit" value="Upload!"> | ||
</form> | ||
</div> | ||
</div> | ||
<br> | ||
<div id="message"> </div> | ||
<div id="images"> | ||
|
||
</div> | ||
<script src = "../static/main.js" defer></script> | ||
</body> | ||
</html> |