26 lines
606 B
HTML
26 lines
606 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Account</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link href="css/base.css" rel="stylesheet" />
|
|
<script src="https://js.stripe.com/v3/"></script>
|
|
<script src="account.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Account</h1>
|
|
|
|
<a href="prices.html">Add a subscription</a>
|
|
<a href="register.html">Restart demo</a>
|
|
|
|
<h2>Subscriptions</h2>
|
|
|
|
<div id="subscriptions">
|
|
<!-- see account.js to see how this div is populated -->
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|