-
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.
Merge pull request #32 from FACN7/arielMainTable
add css to main page
- Loading branch information
Showing
2 changed files
with
64 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,58 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>FACN7 Credit Card</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<link rel="stylesheet" href="style.css" /> | ||
<script src="private.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
<div class="table-container"> | ||
<table id="transactions-table"> | ||
<tr> | ||
<th>Date</th> | ||
<th>Description</th> | ||
<th>Balance</th> | ||
</tr> | ||
</table> | ||
|
||
<div class="navbar"> | ||
<div class="left"> | ||
<h1>Logo</h1> | ||
</div> | ||
<div class="right"> | ||
<div >Home</div> | ||
<div>About</div> | ||
<div> | ||
<form class="form" action="/logout" method="POST"> | ||
<button type="submit" class="logout-btn" >Log out</button> | ||
</form> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<div id="login-form"> | ||
<form class="form" action="/add-transaction" method="POST"> | ||
<input | ||
type="text" | ||
id="desc" | ||
name="Description" | ||
placeholder="Enter Description" | ||
/> | ||
<input | ||
type="text" | ||
id="balance" | ||
name="Balance" | ||
placeholder="Enter Balance" | ||
/> | ||
<button type="submit" name="button" class="btn login">ADD</button> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
</html> | ||
<div class="table-container"> | ||
<table id="transactions-table"> | ||
<tr> | ||
<th>Date</th> | ||
<th>Description</th> | ||
<th>Balance</th> | ||
</tr> | ||
</table> | ||
</div> | ||
</body> | ||
</html> |
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