-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.html
135 lines (132 loc) · 6.53 KB
/
footer.html
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<footer class="black">
<div class="footer-container">
<div class="container">
<div class="row">
<div class="footer-content">
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb">
<div class="footer-about-info">
<h4 style="color: #f20000"> About Us </h4>
<p> BV is a platform to all "Clean Bengaluru" visioned non-profit organisations to solve their community problems.
It runs on the combined effort of organisations and residents of Bengaluru.
BV enables, empowers and enlightens citizens to come together with all stakeholders to report and solve problems. </p>
<ul>
<li><i class="icon-location-1"></i>
<span>Bengaluru, Karnataka, India</span></li>
<li><i class="icon-phone"></i>
<span>Phone : <a href="tel:9353218818" style='color: red'> 9353218818</a></span></li>
<li><i class="icon-mail"></i>
<span>Email : <a href="mailto:[email protected]" style='color: red'>&[email protected]</a></span></li>
</ul>
</div>
<div class="social-link footer-social-link">
<ul>
<li><a href="https://instagram.com/bengaluru_veeraru" target="_blank" class="circle c-3"><i
class="fa fa-instagram"></i></a></li>
<li><a href="https://www.facebook.com/bengaluruveeraru/" target="_blank" class="circle c-2"><i
class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/blr_veeraru" target="_blank" class="circle c-1"><i
class="fa fa-twitter"></i></a></li>
</ul>
</div> <!-- footer-social-link -->
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb">
<h4 style="color: #f20000"> Recent Posts </h4>
<div class="news-1">
<a href="bvcertification">
<img src="assets/images/othersn1.png" alt="...">
</a>
<div class="news">
<h5 class="news-h"><a href="bvcertification">BV - Certification Program</a> </h5>
<p class="date">May 01, 2020</p>
</div>
</div>
<div class="news-2">
<a href="bvabout">
<img src="assets/images/othersn.png" alt="...">
</a>
<div class="news">
<h5 class="news-h"><a href="bvabout">BV - About</a> </h5>
<p class="date">October 19, 2019</p>
</div>
</div>
<div class="news-3">
<a href="bvnews3">
<img src="assets/images/othersn2.png" alt="...">
</a>
<div class="news">
<h5 class="news-h"><a href="bvnews3">BV – BRIDGING CHANGEMAKERS AND THE GOVERNMENT</a> </h5>
<p class="date">January 01, 2020</p>
</div>
</div>
</div>
<!-- "<?= $_SERVER['PHP_SELF'];?> -->
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb">
<h4 style="color: #f20000"> Contact Us </h4>
<form id="f_formInput" v-on:submit.prevent="submitData" autocomplete="off">
<div class="form-group">
<input id="f_first_name" type="text" placeholder="Name"
class="form-control" required="">
</div>
<div class="form-group">
<input id="f_email" type="email" placeholder="E-mail"
class="form-control" required="" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$">
</div>
<div class="form-group">
<textarea id="f_message" class="form-control" rows="4" placeholder="Message..."></textarea>
</div>
<div class="form-group buttons ">
<button title="Submit" type="submit" class="red-btn red-btn-form" value="Send Message">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="back-to-top">
<a class="top top-page" href="#"> <i class="icon-up-open-big"></i></a>
</div>
<div class="back-to-top-mob">
<a class="top top-mob" href="#"> <i class="icon-up-open-big"></i></a>
</div>
</div>
<div id="copyright">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<p class="copy-title">Copyright © <span id="footer-copyright"></span> Bengaluru Veeraru
</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
Website By <a href="https://adithyaakrishna.github.io/" target="_blank" style='color: red'><b><img src="assets/images/Adithya.png" alt=""></b></a>
</div>
</div>
</div>
</div>
<script>
var f_formInput = new Vue({
el: "#f_formInput",
methods: {
submitData: async function (event) {
var first_name = document.getElementById("f_first_name").value;
var email = document.getElementById("f_email").value;
var message = document.getElementById("f_message").value;
await firebase.firestore().collection("BV-Footer-ContactUs").add({
firstName: first_name,
email: email,
message: message
}).then(function () {
document.getElementById("f_first_name").value = "";
document.getElementById("f_email").value = "";
document.getElementById("f_message").value = "";
});
}
}
});
function copyrightYear(){
document.getElementById("footer-copyright").innerHTML = new Date().getFullYear();
}
copyrightYear();
</script>
</footer>