This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #1 from KevFan/master
INTLY-3042 UI changes to CRUD App
- Loading branch information
Showing
11 changed files
with
16,552 additions
and
99 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,14 @@ | ||
footer { | ||
position: fixed; | ||
left: 0; | ||
bottom: 0; | ||
width: 100%; | ||
background-color: #72767B; | ||
color: white; | ||
text-align: center; | ||
} | ||
|
||
.middleAlign { | ||
margin: auto; | ||
padding: 10px; | ||
} |
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 |
---|---|---|
@@ -1,38 +1,58 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Fruit List Application</title> | ||
<link rel="stylesheet" href="/pure-min-1.0.1.css" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/style.css" crossorigin="anonymous"> | ||
</head> | ||
<body> | ||
<div class="pure-g"> | ||
<div class="pure-u-1-3"></div> | ||
<div class="pure-u-1-3"> | ||
<h1 style="text-align: center;">Fruit List Application</h1> | ||
|
||
<form id="fruitForm" class="pure-form pure-g"> | ||
<div class="pure-u-3-4"> | ||
<input id="fruitInput" class="pure-input-1" placeholder="Pineapple..."> | ||
</div> | ||
<div class="pure-u-1-4"> | ||
<button type="submit" class="pure-button pure-button-primary pure-input-1">Create</button> | ||
</div> | ||
</form> | ||
|
||
<table style="margin: auto; width: 100%;" class="pure-table"> | ||
<thead> | ||
<tr> | ||
<th>ID</th> | ||
<th>Name</th> | ||
<th>Actions</th> | ||
</tr> | ||
</thead> | ||
<tbody id="fruitList"></tbody> | ||
</table> | ||
</div> | ||
<div class="pure-u-1-3"></div> | ||
</div> | ||
<script async src="/client.js"></script> | ||
</body> | ||
|
||
<head> | ||
<title>Fruit List Application</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="stylesheet" href="/app.css" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/patternfly.css" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/patternfly-addons.css" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
</head> | ||
|
||
<body class="pf-u-display-flex pf-u-justify-content-center"> | ||
<div class="pf-l-stack pf-m-gutter" style="margin: auto; padding: 1em; min-width: 75%;"> | ||
<section class="pf-l-stack__item"> | ||
<h1 class="pf-c-title pf-m-4xl" style="text-align: center;"> | ||
<i class="fa fa-shopping-basket"></i> | ||
Fruit List Application | ||
</h1> | ||
</section> | ||
|
||
<section class="pf-l-stack__item"> | ||
<form id="fruitForm" novalidate class="pf-c-form"> | ||
<div class="pf-c-input-group"> | ||
<input class="pf-c-form-control" required id="fruitInput" class="pf-c-form" | ||
placeholder="Pineapple..."></input> | ||
<button class="pf-c-button pf-m-primary" type="submit"> | ||
Create | ||
</button> | ||
</div> | ||
</form> | ||
</section> | ||
|
||
<section class="pf-l-stack__item pf-m-fill"> | ||
<table class="pf-c-table pf-m-grid-md" role="grid" id="frutiTable"> | ||
<thead> | ||
<tr> | ||
<th>ID</th> | ||
<th>Name</th> | ||
<th>Actions</th> | ||
</tr> | ||
</thead> | ||
<tbody id="fruitList"></tbody> | ||
</table> | ||
</section> | ||
</div> | ||
|
||
<script async src="/client.js"></script> | ||
</body> | ||
|
||
<footer> | ||
<p class="middleAlign"> | ||
<i class="fa fa-info-circle"></i> Basic CRUD application that represents a legacy system. | ||
</p> | ||
</footer> | ||
|
||
</html> |
Oops, something went wrong.