-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
108 lines (87 loc) · 4.39 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="img/favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon"/>
<title>WiiUSetup</title>
<!-- Bootstrap core CSS -->
<link href="style/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="style/cover.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand"><a href="https://jorgev259.github.io/wiiusetup/">Wii U Setup</a></h3>
<h3 class="masthead-git"><a href="https://github.com/jorgev259/wiiusetup/">Source</a></h3>
</div>
</div>
<div class="inner cover" id="inner1">
<div class="row">
<div class="col-sm-offset-1 col-lg-offset-0 col-sm-5 col-lg-6" style="margin-bottom:6px">
<a href="#" class="btn btn-lg btn-default" onclick="startSetup(setupList['Full Setup'])">Prepare Zip (Wii U + vWii)</a>
</div>
<div class="col-sm-5 col-lg-6" style="margin-bottom:6px">
<a href="#" class="btn btn-lg btn-default" onclick="startSetup(setupList['Wii U Modding'])">Prepare Zip (Wii U only)</a>
</div>
</div>
<div class="row">
<div class="col-sm-offset-1 col-lg-offset-0 col-sm-5 col-lg-6" style="margin-bottom:6px">
<a href="#" class="btn btn-lg btn-default" onclick="startSetup(setupList['vWii Modding'])">Prepare Zip (vWii only)</a>
</div>
</div>
</div>
<div class="inner cover" id="inner2">
<div class="flexlist">
<p class="lead">
<div id="progress" class="infobox">
<label>Progress</label>
</div>
</p>
</div>
<br><br>
<p class="lead" id="button_lastpage">
<a href="#" id="download_btn" class="btn btn-lg btn-default">Please Wait.....</a>
<a href="#" id="guide_btn" class="btn btn-lg btn-default">Warp to wiiu.hacks.guide</a>
</p>
</div>
<div class="mastfoot">
<div class="inner">
<p class="lead" style="color:white;">
Powered by <a href="https://twitter.com/ChitoWarlock">@ChitoWarlock</a>
</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="AJFJXVPUP4V2Q">
<input type="image" src="https://www.paypalobjects.com/webstatic/en_US/i/btn/png/silver-pill-paypal-34px.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/es_XC/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
</div>
</div>
</div>
<script src="libs/jquery-1.10.2.js"></script>
<script src="libs/FileSaver.js"></script>
<script src="libs/jszip.js"></script>
<script src="scripts/web_methods.js"></script>
<script src="scripts/methods.js"></script>
<script src="libs/toastr.min.js"></script>
<link href="libs/toastr.min.css" rel="stylesheet"/>
<script>window.jQuery || document.write('<script src="libs/jquery-1.10.2.js"')</script>
</body>
</html>