-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwizard.html
163 lines (135 loc) · 4.48 KB
/
wizard.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!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.0" />
<title>Wizards</title>
<!-- Bootstrap v5.3.2 -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- My personal JS file for designing the logic -->
<script async defer src="js-files/wizard_process.js"></script>
<!-- My personal CSS link -->
<link rel="stylesheet" type="text/css" href="styles/wizard_style.css" />
<!-- Google fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Quintessential&display=swap"
rel="stylesheet"
/>
</head>
<body id="welcome-wizard">
<!-- section title for school -->
<h1 class="title">Hogwarts School of Witchcraft and Wizardry</h1>
<!-- start of row -->
<div class="row">
<!-- start of column 1 -->
<!-- wizard options section -->
<div id="wizard-options" class="col-sm-6">
<section>
<div class="input-group mb-3">
<!-- input box for wizard's name -->
<input
type="text"
class="form-control"
id="wizardName"
placeholder="Identify yourself"
maxlength="7"
autofocus
/>
<!-- search button to check enrolled wizards -->
<button class="btn btn-success" type="button" id="search-username">
Search Wizard Directory
</button>
</div>
<!-- info about the input box -->
<small id="name-help" class="form-text text-warning">
Max 7 characters accepted
</small>
<!-- is wizard does not enter a name, this error message displays -->
<p id="error-message"></p>
</section>
<div id="hatImage"></div>
<br />
<p id="story"></p>
<br />
<button type="button" id="accept">Accept contract</button>
</div>
<!-- end of column 1 -->
<!-- start of column 2 -->
<!-- wizard-info section -->
<div id="wizard-info" class="col-sm-6">
<!-- section title for wizard -->
<h3 class="title">Wizard Information</h3>
<!-- house crest image -->
<p id="sorting-hat-group"></p>
<!-- wizard's name that was put in the input box -->
<p id="welcome-wizard-message"></p>
<div
id="loading-wizard-image"
class="spinner-border text-success"
role="status"
>
<span class="visually-hidden">Loading...</span>
</div>
<!-- automatic image generation for wizard -->
<canvas id="canvas"></canvas>
<table id="bio"></table>
<br />
<!-- contract terms & conditions -->
<div id="text-block"></div>
<br /><br />
<button type="button" id="click-me">Click Me</button>
</div>
<!-- end of column 2 -->
</div>
<!-- end of row -->
<!-- instructions for what the wizard should do on the page -->
<p id="instructions"></p>
<footer>
<!-- button to go back to welcome.html page -->
<button type="button" class="btn btn-danger" id="go-back">Return</button>
<br /><br />
<p id="credits">
Suitcase Photo by
<a
class="foot"
href="https://unsplash.com/@erwanhesry?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
target="_blank"
>
Erwan Hesry
</a>
on
<a
class="foot"
href="https://unsplash.com/collections/10446860/harry-potter?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
target="_blank"
>
Unsplash
</a>
<br />
Sorting Hat Clipart by
<a
class="foot"
href="https://www.pngkit.com/view/u2r5r5o0i1u2q8w7_harry-potter-hat-png-clipart-sorting-hat-harry/"
target="_blank"
>
PNGKIT
</a>
<br />
Hogwarts House Crest Images by
<a
class="foot"
href="https://pottermore.fandom.com/wiki/Houses"
target="_blank"
>
Pottermore Fandom Page
</a>
</p>
</footer>
</body>
</html>