-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcephus.php
More file actions
54 lines (47 loc) · 1.2 KB
/
Copy pathcephus.php
File metadata and controls
54 lines (47 loc) · 1.2 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url(" cc.jpg");
height: 970px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
<link rel="stylesheet" type="text/css">
<script type="text/javascript">
window.onload = function(){
var r1 = document.getElementById('sms');
var r2 = document.getElementById('in_app');
r1.onclick = handler1;
r2.onclick = handler2;
}
function handler1() {
window.open("confirmation.php","_self");
}
function handler2(){
window.open("in_app.php","_self");
}
</script>
<style type="text/css">
div.preference{
align-self: center;
width: 550px;
margin: 550px;
margin-left: 400px;
}
</style>
<title>cepheus</title>
</head>
<body>
<div class="preference">
<h1> <font face="futura" size="6">SELECT YOUR PREFERENCE</font></h1>
<form>
<h3> <input type="radio" name="in_app" id="in_app" style="width:27px;height:27px;"/> <font face="verdana" color="black" size="6">Mobile App</font> </h3>
<h3> <input type="radio" name="sms" id="sms" style="width:27px;height:27px;"/> <font face="verdana" color="black" size="6">SMS</font></h3>
</form>
</div>
</body>
</html>