-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscription.php
103 lines (53 loc) · 2.21 KB
/
subscription.php
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
<?php
require_once 'app/config/config.php';
echo '<pre>'; print_r($DEBUG); echo '</pre>';
?>
<!DOCTYPE html>
<html>
<head>
<title>Joy Of Code: Intro To HTML - Subscription</title>
<link rel="stylesheet" href="styles/styles.css" />
<link rel="icon" href="images/favicon.ico" type="image/ico"/>
<link rel="icon" href="images/favicon.gif" type="image/gif"/>
<link rel="icon" href="images/favicon.png" type="image/png"/>
<style type="text/css">
section#main
{width:800px;
float:none;
margin:20px;
padding:0 50px 0 25px ;}
hr
{visibility:hidden;}
</style>
</head>
<body>
<div id="wrapper">
<header>
<img src="/images/header.png" alt="Joy Of Code Intro To HTML" />
</header>
<section id="main" class="clearfix">
<p>So, how did you do, <strong><?php echo $firstname ?></strong>?</p>
<p>Wether you're waiting for me to review your firsts page or you're ready to go on now's a good time to let me subscribe you to my Joy Of Code Blog. That way you can read about my take on web and web design just about as fast as I can get it from brain to net. It's a good way to say in touch and a way to find out about classes that I actually teach in New York City if you're in the neighborhood. I go through spurts writing for my blog but if you don't like it you can unsubscribe and I'll still talk to you.</p>
<p><strong>Uncheck any of these if you do not want me to subscribe you to my blog where I write about these subjects:</strong></p>
<form action="app/controllers/subscription.php" method="post" name="">
<label class="checkbox">HTML
<input type="checkbox" name="html" value="HTML" checked>
</label>
<br />
<br />
<label class="checkbox">CSS
<input type="checkbox" name="css" value="CSS" checked>
</label>
<br />
<br />
<label class="checkbox">WordPress
<input type="checkbox" name="wordpress" value="WordPress" checked>
</label>
<br /><br />
<button type="submit" class="btn btn-primary"><i class="icon-home icon-white"></i> Back Home</button>
</form>
</section>
<?php include("includes/footer.php"); ?>
</div> <!-- end wrapper -->
</body>
</html>