main menu and search results HTML

This commit is contained in:
jroth237 2020-02-22 18:18:11 -05:00
parent 6ba66efdbe
commit 4d009c3c93
5 changed files with 138 additions and 1 deletions

View file

@ -0,0 +1,33 @@
.center{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
p{
color: white;
text-align: center;
font-family: Brush Script MT;
font-size: 35px;
}
body{
background-color: rgb(50, 255, 9);
}
/*h1{
color: white;
text-align: center;
font-family: serif;
font-size: 30px;
}*/
.text-block {
position: center;
bottom: 20px;
right: 20px;
background-color: black;
color: white;
padding-left: 55px;
padding-right: 20px;

View file

@ -0,0 +1,33 @@
.center{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
p{
color: white;
text-align: center;
font-family: Brush Script MT;
font-size: 35px;
}
body{
background-color: rgb(50, 255, 9);
}
/*h1{
color: white;
text-align: center;
font-family: serif;
font-size: 30px;
}*/
.text-block {
position: center;
bottom: 20px;
right: 20px;
background-color: black;
color: white;
padding-left: 55px;
padding-right: 20px;

22
client/html/mainMenu.html Normal file
View file

@ -0,0 +1,22 @@
<html>
<head><title>Welcome to LimeCare</title></head>
<body>
<link href="fabric-samples/client/css/createNewBlockCSS.css" rel = "stylesheet">
<script src=""></script>
<script src=""></script>
<br>
<div class="buttons">
<button type="button" onclick="alert('BACKEND')">Create a New Block</button>
<button type="button" onclick="alert('BACKEND')">Search For a Block</button>
</div>
</body>
</html>

View file

@ -4,7 +4,7 @@
<body>
<link href="/css/mainmenu.css" rel = "stylesheet">
<link href="fabric-samples/client/css/searchForBlockCSS.css" rel = "stylesheet">
<script src=""></script>
<script src=""></script>

View file

@ -0,0 +1,49 @@
<html>
<head><title>Results</title></head>
<body>
<link href="/css/mainmenu.css" rel = "stylesheet">
<script src=""></script>
<script src=""></script>
<div class="text-block">
<input type="radio" id="hash#" name="sOption" value="Hash Number">
<label for="hash#">Hash#</label><br>
<input type="radio" id="medName" name="sOption" value="Medicine Name">
<label for="medName">Medicine Name</label><br>
<input type="radio" id="ingred" name="sOption" value="Ingredients">
<label for="ingred">Ingredients</label><br>
<input type="radio" id="origin" name="sOption" value="Origin">
<label for="origin">Origin</label><br>
<input type="radio" id="date" name="sOption" value="Date inputted">
<label for="date">Date</label><br>
<input type="radio" id="price" name="sOption" value="Price">
<label for="price">Price</label><br>
<input type="radio" id="refHash" name="sOption" value="Reference Hash">
<label for="refHash">Reference Hash</label><br>
</div>
<div class="Search">
<label for="search">Search</label>
<input type="text" id="search" name="search">
</div>
<div class="buttons">
<button type="button" onclick="alert('BACKEND')">Back</button>
</div>
</body>
</html>