-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.handlebars
71 lines (62 loc) · 1.68 KB
/
index.handlebars
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
<style>
.abstract:link, .abstract:visited {
background-color: #f44336;
color: white;
padding: 12px 43px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px;
position: relative;
bottom: 8px;
}
.abstract:hover, .abstract:active {
background-color: #343A40;
}
.brandLink {
background-color: #f44336;
box-shadow: 0 5px 0 darkred;
color: white;
padding: 7px 8px;
position: relative;
}
.brandLink:hover {
background-color: #ce0606;
cursor: pointer;
}
.brandLink:active {
box-shadow: none;
top: 5px;
}
</style>
<section class="py-2">
<div class="row">
<div class="col-md-6 text-center">
<h1 class="display-3 mt-3 pt-5">
Web Development Thesis
</h1>
<p class="lead">Learn Progressive Web Development</p>
<form action="/abstract" method="GET">
<a href="/abstract" class="abstract" >Read Abstract</a>
</form>
<form action="/charge" method="POST">
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="{{stripePublishableKey}}"
data-amount="2500"
data-name="PWA Thesis"
data-description="Research done by Neel Gajjar"
data-image="/img/logo2.png"
data-locale="auto">
</script>
<script>
document.getElementsByClassName('stripe-button-el')[0].style.display='none';
</script>
<button type="submit" class="btn btn-outline-dark text-white btn-lg ">Purchase For $25</button>
</form>
</div>
<div class="col-md-6">
<img src="/img/book3.png" alt="" class="img-fluid">
</div>
</div>
</section>