-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfinish.html
158 lines (122 loc) · 5.14 KB
/
finish.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
<!-- Font-Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css" integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- <link rel="shortcut icon" type="image/png" href="img/favicon.png"> -->
<title>Event Reg.</title>
</head>
<body>
<section class="header-class">
<header>
<i class="fab fa-elementor header__logo"></i>
</header>
</section>
<main>
<section class="section-card">
<div class="row row-form">
<div class="col-1-of-2 image-section col-2">
<div class="image-details" id="card-img">
<div class="details_section">
<div class="">
<h3 id="eventName"></h3>
</div>
</div>
<div class="details_section">
<div class="">
<i class="fa fa-info-circle" aria-hidden="true"></i>
</div>
<div class="">
<p id="about">
Mada Center 8th floor, 379 Hudson St, New York, NY 10018 US
</p>
</div>
</div>
<div class="details_section">
<div class="">
<span class="location-icon fa fa-map-marker"></span>
</div>
<div class="">
<p id="add">
Mada Center 8th floor, 379 Hudson St, New York, NY 10018 US
</p>
</div>
</div>
<div class="details_section">
<div class="">
<span class=""><i class="fa fa-phone-alt"></i><span class="txt3">
+1 800 1236879
</span> </span>
</div>
</div>
<div class="details_section">
<div class="">
<span class=""><i class="fa fa-envelope"></i></span>
</div>
<div class="">
<p class="txt3">
</p>
</div>
</div>
</div>
</div>
<div class="col-1-of-2 col-2">
<!-- Form Heading -->
<h1 class="heading-primary">
<span class="heading-primary--main">Event Registration</span>
<span class="heading-primary--sub">Confirm all the details & click on Finish</span>
</h1>
<!-- Progressbar -->
<div class="progressbar">
<li id="personal" class="progressbar--item"><i class="fas fa-user active"></i></li>
<li id="payment" class="progressbar--item"><i class="fas fa-camera active"></i></li>
<li id="confirm" class="progressbar--item"><i class="fas fa-check-circle active"></i></li>
</div>
<form action="/reg.html" method="POST">
<div class="form-card ">
<div class="row row-form">
<div class="col-1-of-2 form-elements">
<h2 class="fs-title">Finish:</h2>
</div>
<div class="col-1-of-2 form-elements">
<h2 class="steps">Step 3 - 3</h2>
</div>
</div>
<div class="row row-form">
<div class="tick">
<i class="fas fa-check"></i>
<p>Confirmed !</p>
</div>
</div>
<div class="row row-form">
<input type="button" name="next" class="btn-form" value="HOME" onclick="window.location.href='/'" />
<button type="button" name="button" class="btn-form" onclick="window.location.href='mailto:[email protected]'">Contact</button>
</div>
</div>
</form>
</div>
</div>
</section>
</main>
<section class="footer-class">
<footer>
<a href="#"><i class="fab fa-twitter foot-icon"></i></a>
<a href="#"><i class="fab fa-facebook foot-icon"></i></a>
<a href="#"><i class="fab fa-instagram foot-icon"></i></a>
<a href="#"><i class="fas fa-envelope foot-icon"></i></a>
<h1>Event Registration</h1>
<p class="cpt">© Copyright 2020 Shankha & Hrishikesh</p>
</footer>
</section>
<!-- Javascript -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="js/reg.js" charset="utf-8"></script>
</body>
</html>