summaryrefslogtreecommitdiff
path: root/src/frontend_blog/essay_cc-payment.html
blob: fe20fb4a74c967f9117a4b6c64f56ed7f99ccf8c (plain)
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
<!DOCTYPE html>
<!--html lang="en">
<head>
  <title>Enter your details</title>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
  <header>
    <div id="logo">
      <svg height="100" width="100">
        <circle cx="50" cy="50" r="40" stroke="darkcyan" stroke-width="6" fill="white" />
        <text x="19" y="82" font-family="Verdana" font-size="90" fill="darkcyan">B</text>
      </svg>
    </div>

    <h1>Blog site demonstration</h1>
  </header>

  <aside class="sidebar" id="left">
  </aside>

  <section id="main">
    <article-->
      <h1>Enter your details</h1>
      <p>We need a few details before proceeding with credit card payment</p>
    <form>
      First name<br> <input type="text"></input><br>
      Family name<br> <input type="text"></input><br>
      Age<br> <input type="text"></input><br>
      Nationality<br> <input type="text"></input><br>
      Gender<br> <input type="radio" name"gender">Male</input>
             <input type="radio" name="gender">Female</input><br>
    <input id='article-name' type="hidden" value="{article}"></input>
    </form>
    <form method="post" action="essay_cc-fulfillment.php?article={article}">
      <input type="submit"></input>
    </form>
  <script type="text/javascript">
    {jscode}
  </script>
    <!--/article>
  </section>
</body>
</html-->