Skip to content

Commit

Permalink
link pages with shared paths
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Oct 22, 2018
1 parent a6fd612 commit 8658100
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions UI/admin-home.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<div class="dropdown-content">
<a href="add-item.html">add items</a>
<a href="#">discard items</a>
<a href="discard-items.html">discard items</a>
<a href="#">customer offers</a>
</div>
</div>
Expand All @@ -31,7 +31,7 @@
<a href="#default" class="dropbtn">sales</a>

<div class="dropdown-content">
<a href="#">Records</a>
<a href="sales-records.html">Records</a>
<a href="#">Bulk transaction</a>
<a href="#">Finances</a>
</div>
Expand All @@ -44,7 +44,7 @@
<div class="dropdown-content">
<a href="#">send task</a>
<a href="#">hire</a>
<a href="#">manage attendants</a>
<a href="default.html">manage attendants</a>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion UI/attendant-item-description.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="nav-sign-in">
<ul>
<li><a href="#sign-up.html">We keep the sales up. You handle the money</a></li>
<li><a class="sign-up-for-new-upgrade" href="#default">Upgrade</a></li>
<li><a class="sign-up-for-new-upgrade" href="default.html">Upgrade</a></li>
</ul>
</div>

Expand Down
2 changes: 1 addition & 1 deletion UI/discard-items.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h2>We'll throw away the waste. Just check it</h2>
<div class="left-cat">
<h3>delete by category</h3>
<ul>
<li><a href="#default"><label>food<input type="checkbox" checked="">
<li><a href="default.html"><label>food<input type="checkbox" checked="">
<span class="checkmark"></span></a></li>
<li><a href="default.html">water
<input type="checkbox">
Expand Down
2 changes: 1 addition & 1 deletion UI/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ <h2>Update your store in minutes</h2>
<div class="call-text">
<h1>Our most customer-oriented business servicing tool, ever</h1><br/>

<p><span><a href="#default" class="btn-call-txt">what people are saying</a></span></p>
<p><span><a href="default.html" class="btn-call-txt">what people are saying</a></span></p>

</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion UI/sales-records.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="nav-sign-in">
<ul>
<li><a href="#sign-up.html">Limit videos employees watch on company hours</a></li>
<li><a class="sign-up-for-new-upgrade" href="#default">Upgrade</a></li>
<li><a class="sign-up-for-new-upgrade" href="default.html">Upgrade</a></li>
</ul>
</div>

Expand Down
6 changes: 3 additions & 3 deletions UI/sign-in.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
<div id="container">
<form>
<label for="username">Username or email:</label>
<input type="text" id="username" name="username" minlength="5" required="required">
<input type="text" id="username" name="username" minlength="5" required="required" title="Name should have at least 5 letters">
<label for="password">Password:</label>
<input type="password" id="pass" name="password" minlength="6" maxlength="12" required="required">
<input type="password" id="pass" name="password" required="required" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,}" title="Password must contain at least one digit, one uppercase, one lowercase letter, and at least 6 characters">
<div id="bottom">
<input type="checkbox"><label class="check"for="checkbox">Keep me signed in</label><br/>
<input class="sign-button" type="submit" value="Sign in">
<a class="bottom-right" href="#default">Forgot password</a>
<a class="bottom-right" href="default.html">Forgot password</a>
</div>
</form>
</div>
Expand Down
2 changes: 1 addition & 1 deletion UI/sign-up.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h2>Let's get started. It's fun</h2>
<label for="password">Password:</label>
<input type="password" id="pass" name="password" required="required" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,}" title="Password must contain at least one digit, one uppercase, one lowercase letter, and at least 6 characters">
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-pass" name="confirm-password" required="required" minlength="6" maxlength="12" title="Passwords should be the same">
<input type="password" id="confirm-pass" name="confirm-password" required="required" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,}" title="Passwords should be the same">
<div id="bottom">
<input class="sign-button" id="sign-up-button" type="submit" value="Sign Up">
<a class="bottom-right" href="default.html">Terms of use and agreement</a>
Expand Down
Binary file added app/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file added app/__pycache__/app.cpython-36.pyc
Binary file not shown.
Binary file added app/tests/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 8658100

Please sign in to comment.