"patient page"
Bootstrap 3.3.0 Snippet by hossam

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div id="fullscreen_bg" class="fullscreen_bg"/>
<form class="form-signin">
<div class="container">
<div class="row">
<div class="col-md-5 col-md-offset-3">
<div class="panel panel-default">
<div class="panel panel-primary">
<h3 class="text-center"> Patients Page</h3>
<div class="panel-body">
<input name="loc" class="span5" type="text" placeholder="search patient ">
<button type="submit" class="btn btn-primary" style="width:90px"> <i class="icon-search icon-white"></i> Search </button>
<button type="submit" class="btn btn-primary" style="width:90px"> <i class="icon-search icon-white"></i> HomePage </button>
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Address</th>
<th>Mobile</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">Ahmed Aly</a></td>
<td>25</td>
<td>cairo</td>
<td> 01100003765</td>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body
{
background-color: #1b1b1b;
padding-top: 40px;
}
.form-signin {
max-width: 280px;
padding: 15px;
margin:100px;
margin-top:190px;
margin-left:200px;
}
.input-group-addon
{
background-color: rgb(50, 118, 177);
border-color: rgb(40, 94, 142);
color: rgb(255, 255, 255);
}
.form-control:focus
{
background-color: rgb(50, 118, 177);
border-color: rgb(40, 94, 142);
color: rgb(255, 255, 255);
}
.form-signup input[type="text"],.form-signup input[type="password"] { border: 1px solid rgb(50, 118, 177); }
.fullscreen_bg {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-size: cover;
background-position: 50% 50%;
background-image: url('http://i.imgur.com/aFs5QmP.jpg');
background-repeat:repeat;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: