-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep1_a.html.php
46 lines (46 loc) · 2.21 KB
/
step1_a.html.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
<!DOCTYPE html>
<html>
<head>
<!-- Google Analytics Content Experiment code -->
<script>function utmx_section(){}function utmx(){}(function(){var
k='72897682-1',d=document,l=d.location,c=d.cookie;
if(l.search.indexOf('utm_expid='+k)>0)return;
function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.
indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write(
'<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':
'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().
valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();
</script><script>utmx('url','A/B');</script>
<!-- End of Google Analytics Content Experiment code -->
<title>Index A/B testing</title>
<?php include 'header.php' ?>
</head>
<body>
<?php include 'menu.php' ?>
<div class="container">
<div class="span8">
<form action="step2.html.php" method="POST">
<fieldset>
<legend>Adres gegevens</legend>
<label for="naam">Naam:</label>
<input type="text" id="naam" placeholder="naam" name="naam" required />
<label for="straat">Straat:</label>
<input type="text" id="straat" placeholder="straat" name="straat" required />
<label for="huisnr">Huisnummer:</label>
<input type="text" id="huisnr" placeholder="huisnr" name="huisnr" required />
<label for="postcode">Postcode:</label>
<input type="text" id="postcode" placeholder="postcode" name="postcode" required />
<label for="stad">Stad:</label>
<input type="text" id="stad" placeholder="stad" name="stad" required /> <br />
<button type="submit" class="btn btn-danger">
<i class="icon-shopping-cart icon-white"></i> Bestellen
</button>
</fieldset>
</form>
</div>
</div>
</body>
</html>