-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgameSelection.html
77 lines (64 loc) · 3.03 KB
/
gameSelection.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
<div class="row welcomeBadge">
<h3 class="ml-auto pt-4 pr-2">Hi user !</h3>
<img src="" id="tableBanner" />
</div>
<div class="row">
<h3>Please choose a game</h3>
<div class="mt-2 card-deck">
<div class="card">
<img src="images/lucky7.jpg" class="card-img-top img-size" alt="...">
<div class="card-footer text-center">
<button type="button" id="playLucky" class="btn btn-info">Play me !!</button>
</div>
</div>
<div class="card">
<img src="images/falls.jpg" class="card-img-top img-size" alt="...">
<div class="card-footer text-center">
<button type="button" id="playFalls" class="btn btn-info">Play me !!</button>
</div>
</div>
<div class="card">
<img src="images/rainbow.jpg" class="card-img-top img-size" alt="...">
<div class="card-footer text-center">
<button type="button" id="playRainbow" class="btn btn-info">Play me !!</button>
</div>
</div>
</div>
</div>
<div class="row mt-4" id="camera-section">
<div class="camera">
<video id="video">Video stream not available.</video>
<button id="startbutton" class="video-ctrl">Take photo</button>
<button id="stopbutton" class="video-ctrl">Stop</button>
</div>
<canvas id="canvas">
</canvas>
<div class="output">
<img id="photo">
</div>
<div class="loader m-5"></div>
<div class="auth-result">
<div class="age-valid">
<h3><i class="fa fa-check-circle fa-1x" style="color: #4bc14b;"></i> Age verification</h3>
<h3 class="face-match"><i class="fa fa-1x" ></i> Face matched</h3>
<h5 class="playInvalid">You can play the game</h5>
<button type="button" id="playGame" class="btn btn-info playInvalid">Play</button>
</div>
<div class="age-invalid">
<h3><i class="fa fa-times-circle fa-1x" style="color: #c14b4b;"></i> Age verification</h3>
<h3 class="face-match"><i class="fa fa-1x" ></i> Face matched</h3>
<h5>Only 18yrs and above !!</h5>
</div>
<div class="age-valid-unhappy">
<h3><i class="fa fa-check-circle fa-1x" style="color: #4bc14b;"></i> Age verification</h3>
<h3 class="face-match"><i class="fa fa-1x"></i> Face matched</h3>
<h5>You don't seem good</h5>
<h6 class="playInvalid">Are you sure you still want to play ?</h6>
<button type="button" id="playGames" class="btn playInvalid btn-info">Yes</button>
</div>
<div class="response-invalid">
<h3><i class="fa fa-times-circle fa-1x" style="color: #c14b4b;"></i> No Face detected</h3>
<h5>Please capture another photo</h5>
</div>
</div>
</div>