-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.21 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.21 KB
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
<!Doctype html>
<html>
<head>
<title>MPID2</title>
</head>
<body>
<video id="webcam" style="display:none;"></video>
<div id="main_div">
<canvas id="canvas" width="640" height="480"></canvas>
<form id="main_form">
<p>Nombre:</p>
<input type="text" id="nombre_field">
<p>Matricula:</p>
<input type="text" id="matricula_field">
<p>Carrera:</p>
<input type="text" id="carrera_field">
<p>Estatus:</p>
<input type="text" id="estatus_field">
<p>Campus:</p>
<input type="text" id="campus_field">
</form>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="js/jsfeat-min.js"></script>
<script type="text/javascript" src="js/compatibility.js"></script>
<script type="text/javascript" src="js/profiler.js"></script>
<script type="text/javascript" src="js/dat.gui.min.js"></script>
<script type="text/javascript" src="/js/index.js"></script>
</body>
</html>