-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
93 lines (72 loc) · 2.34 KB
/
signup.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<head>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="Semantic-UI-CSS-master/components/reset.css">
<link rel="stylesheet" type="text/css" href="Semantic-UI-CSS-master/components/icon.css">
<link rel="stylesheet" type="text/css" href="css/semantic.min.css">
<title>Signup!</title>
<style>
input{
font-size: 12pt;
}
h2 span.spacer {
padding:0 8px;
}
.image {
position: relative;
width: 100%; /* for IE 6 */
}
h2 {
position: absolute;
top: 20vh;
left: 24vw;
width: 100%;
}
</style>
</head>
<body>
<div class="image">
<img style="margin-top: 7.5vh;
margin-left: 5vw;;
width: 90vw;
height: 90vh;"
src="img/bg/mac.png">
<h2>
<span>
Hi,
<span class='spacer'></span>
<br>
I believe I need to Sign-up to use your services.
<br>
<br>
My Name is:
<span class='spacer'></span>
<div class="ui basic red input" >
<input type="text">
</div>
<br>
<br>
And, My Username would be:
<span class='spacer'></span>
<div class="ui basic red input" >
<input type="text">
</div>
<br>
<br>
Also, I would like to have my password as:
<span class='spacer'></span>
<div class="ui basic red input" >
<input type="password">
</div>
</span>
</h2>
</div>
<script type="text/javascript">
$(function() {
$("h2")
.wrapInner("<span>")
$("h2 br")
.before("<span class='spacer'>")
.after("<span class='spacer'>");
});
</script>
</body>