-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbsw_loans.php
More file actions
111 lines (69 loc) · 2.14 KB
/
bsw_loans.php
File metadata and controls
111 lines (69 loc) · 2.14 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css"
integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="kc.fab.css">
<title>Loans | BSW</title>
<link rel="icon"
type="image/png"
href="favicon.ico">
<style>
body{
background-color: #a4e7f055;
}
.about-us-title{
font-size: 4rem;
opacity: 0.6;
}
.about-us-text{
color: #fff;
font-weight: medium;
font-size:1rem;
margin-bottom: 20px;
}
#about-us{
padding-top:60px;
margin-top:0px;
background-image: linear-gradient(90deg, #67B26F 0%, #4CA2CD 100%);
}
.form-preview{
height:800px;
}
</style>
</head>
<body>
<!-- Header -->
<?php include 'components/header.php'; ?>
<div id="about-us">
<br />
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-4 justify-content-center">
<h1 class="about-us-title">BSW Loans</h1>
</div>
<div class="col-12 col-lg-7 ml-auto">
<p class="about-us-text mt-4">
To avail the BSW Loan facility, please fill this form, and submit the form along with the mentioned documents in Dean, Student Affairs Office </p>
</div>
</div>
</div>
</div>
<div class="container my-4" id="softwares-list">
<div class="row">
<div class="col-12 my-2">
<a href="misc/loan_form.pdf" target="_blank" rel="noopener noreferrer" class="btn btn-primary"><span class="fa fa-download"></span> Download Form</a>
</div>
</div>
<div class="row justify-content-center">
<div class="card col-12 ">
<embed src="misc/loan_form.pdf" class="form-preview m">
</div>
</div>
</div>
<?php include 'components/footer.php'; ?>
</body>
</html>