added style stuff
This commit is contained in:
@@ -9,17 +9,46 @@
|
||||
|
||||
<!-- Latest compiled and minified JavaScript -->
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||
<style type="text/css">
|
||||
.test
|
||||
{
|
||||
height: 30%;
|
||||
}
|
||||
.test2 {
|
||||
height:50%;
|
||||
}
|
||||
input {
|
||||
width:70%;
|
||||
height:20%;
|
||||
font-size:500%;
|
||||
}
|
||||
select {
|
||||
width:70%;
|
||||
height:20%;
|
||||
font-size:500%;
|
||||
}
|
||||
label {
|
||||
font-size:500%;
|
||||
}
|
||||
button {
|
||||
width:70%;
|
||||
height:20%;
|
||||
font-size:500%;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body style="background-color:#eee">
|
||||
<div class="jumbotron text-center">
|
||||
<h1>Alright {{ $username }}, here is where you can view bills that you need to pay...</h1>
|
||||
{!! Form::open(array('action' => 'HomeController@home')) !!}
|
||||
{{ Form::hidden('username', $username) }}
|
||||
<p>
|
||||
{{ Form::button('user Home', array('style' => 'height:40%;width:70%', 'type' => 'submit')) }}
|
||||
<div style="background-color:#000000">
|
||||
{{ Form::button('user home', array('style' => 'height:15%;width:100%;font-size:500%;background-color:#000000;color:#eee', 'type' => 'submit')) }}
|
||||
</div>
|
||||
</p>
|
||||
{!! Form::close() !!}
|
||||
<div class="jumbotron text-center">
|
||||
<h1>Alright {{ $username }}, here is where you can view bills that you need to pay...</h1>
|
||||
|
||||
{!! Form::open(array('action' => 'BillController@viewbill')) !!}
|
||||
{{ Form::hidden('username', $username) }}
|
||||
@@ -29,9 +58,25 @@
|
||||
@endforeach
|
||||
</select>
|
||||
<p>
|
||||
{{ Form::button('Create Bill', array('style' => 'height:40%;width:70%', 'type' => 'submit')) }}
|
||||
{{ Form::button('view bills', array('style' => 'height:40%;width:70%', 'type' => 'submit')) }}
|
||||
</p>
|
||||
{!! Form::close() !!}
|
||||
<div>
|
||||
<table style="width:100%;font-size:300%">
|
||||
<tr>
|
||||
<th>bill name</th>
|
||||
<th>amount paid</th>
|
||||
<th>total</th>
|
||||
<th>owner</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ $billname }}</td>
|
||||
<td>{{ $amountpaid }}</td>
|
||||
<td>{{ $total }}</td>
|
||||
<td>{{ $owner }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user