-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
44 lines (37 loc) · 1.31 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
<!doctype html>
<html>
<head>
<title>WebRTC: Still photo capture demo</title>
<meta charset='utf-8'>
<link rel="stylesheet" href="assets/css/capture.css" type="text/css" media="all">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="assets/js/capture.js"></script>
</head>
<body class="bg">
<div class="vertical-center">
<div class="row">
<div class="col-sm-6">
<div class="camera" id="center">
<video id="video"></video>
</div>
<div class="card-body">
<h5 class="card-title">Take Photo Here</h5>
<button class="button" id="startbutton">Take photo</button>
</div>
</div>
<canvas id="canvas"></canvas>
<div class="col-sm-6">
<div class="camera" id="center">
<img id="photo" alt="The screen capture will appear in this box.">
</div>
<div class="card-body">
<h5 class="card-title">Your Photo</h5>
<a href="login/index.html"><button class="button">Continue to Banking</button></a>
<p class="card-text"></p>
</div>
</div>
</div>
</div>
<div class="empty"></div>
</body>
</html>