Skip to content

Commit

Permalink
added place holder user page after login
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyDeSantiago committed Sep 25, 2023
1 parent bb69fd2 commit b28e56f
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions public/user.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sprout Financials</title>
<link rel="stylesheet" href="style.css" class="rel">

<style>
header {
color: #137547;
padding: 10px;
}
</style>

</head>

<body>

<!-- Blank Logo -->
<img src="asset/blank.png" id = "blank">

<main id = "main_form">

<!-- Logo in every page -->
<!-- <img src="asset/LOGO.png" class ="logo"> -->
<img src="asset/NAME.png" class ="logo_name">

<header>
<h1>Welcome, User!</h1>
</header>

<nav>
<ul>
<!-- Some place holder stuff for right now -->
<li><a href="#">Home</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Logout</a></li>
</ul>
</nav>
</main>



</body>
</html>

0 comments on commit b28e56f

Please sign in to comment.