Skip to content

Commit

Permalink
Home
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuajoyreji committed Mar 18, 2023
1 parent 548ea37 commit 2100ae2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/Details/Details.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function Details() {
</div>
<br />
<div class="form-group">
<label class="control-label col-2">Resting electrocardiographic result :</label>
<label class="control-label col-2">Resting electrocardiographic result:</label>
<input type="radio" id="0r" name="re" value="0" />
<label class="col-1 re" for="0r">0</label>
<input type="radio" id="1r" name="re" value="1" />
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/pages/Home/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,10 @@ min-height: 100vh;
}
.details{
color: #fff;
padding-top: 50px;
}

.dtl{
color: white;
text-decoration: none;
}
21 changes: 13 additions & 8 deletions frontend/src/pages/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,19 @@ const Home = () => {
<>
<div className='content'>
<div className='container'>
<p className='details'>Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
</p>
<div className='row details'>
<p className=' col-6'>Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
</p>
<p className='col-3 offset-1'> To check health, enter details here<button type="button" class="btn btn-danger "><a href='/Details' className='dtl'>Details</a></button></p>

</div>

</div>

</div>
Expand Down

0 comments on commit 2100ae2

Please sign in to comment.