-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfinal.html
executable file
·28 lines (27 loc) · 1.04 KB
/
final.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Thank you | UserApp + Stripe Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Demonstration of how to use UserApp and Stripe to create pricing with sign-up." />
<!-- Fonts and CSS -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link href="css/animate.min.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div class="row">
<p>
Thank you for signing up for my app!
</p>
<p style="margin-bottom: 0;">
<button class="btn btn-info" onclick="alert('This demo does not include login.')">Log In →</button>
</p>
</div>
</div>
</body>
</html>