-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnsbscribeofc.html
78 lines (58 loc) · 2.1 KB
/
Unsbscribeofc.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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Opt Out</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$('#submit').click(function(){
$.post("unsb.php", $("#mycontactform").serialize(), function(response) {
$('#success').html(response);
//$('#success').hide('slow');
});
return false;
});
});
</script>
<style>
.myButton:hover {
background-color:#5cbf2a;
}
.myButton:active {
position:relative;
top:1px;
}
</style>
</head>
<body>
<div id="outerwrap">
<div id="wrap">
<div>
<div id="outer">
<div id="container"><br />
<p align="center" style="font-family:Georgia, 'Times New Roman', Times, serif;font-size:35px;font-weight:bold;">"OPT OUT"</p>
<div class="text_bottom_wrap">
<div class="text_bottom">
<table class="longoptin" style="height: 40px;" cellpadding="0" cellspacing="15" align="center">
<tbody>
<tr valign="center">
<td style="width: 500px;"><div align="center">
<p><strong> Email Below </strong></p>
</div>
<form action="" method="post" id="mycontactform">
<div class="optin_form" style="text-align: center;">
<input type="text" id="email" name="email"></input>
<input type="button" name="submit" id="submit" value="OPT Out" class="myButton" ></input>
</div>
</form></td>
</tr></tbody></table>
<!--**********-->
</div>
</div>
</div>
</div>
</div>
</body>
</html>