-
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.
adding profile add to frontend and change button styling
- Loading branch information
Showing
7 changed files
with
104 additions
and
6 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
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
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,34 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block core %} | ||
<!-- Add all page content inside this div if you want the side nav to push page content to the right (not used if you only want the sidenav to sit on top of the page --> | ||
<div id="main" class="main"> | ||
<span id="main-menu-button" class="btn-menu" onclick="openNav()">≡</span> | ||
<div> | ||
<h1 class="header1 core_content">Profile</h1> | ||
</div> | ||
<p class="core_content">Profile</p> | ||
|
||
<form action="{{url_for('addProfile')}}" method="POST" class="core_content"> | ||
<div id="profile_data"> | ||
<table class="vertical_table"> | ||
<tr> | ||
<td class="data">Name</td> | ||
<td class="data"> | ||
<input type="text" class="input" id="input_name" name="name" placeholder="Profile Name""> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="data">Tag</td> | ||
<td class="data"> | ||
<input type="text" class="input" id="input_tag" name="tag" placeholder="Profile Tag"> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
<div id="control_buttons"> | ||
<button id="btn_submit" class="btn_submit" type="submit">Submit</button> | ||
</div> | ||
</form> | ||
</div> | ||
{% endblock core %} |
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