36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
{% load staticfiles %}
|
|
<html>
|
|
<head>
|
|
<title>Ha Bier!</title>
|
|
<script type="text/javascript"
|
|
src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
|
|
</script>
|
|
<script type="text/javascript"
|
|
src="{% static 'jpeg_camera_with_dependencies.min.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'photo.js' %}"></script>
|
|
<link href="{% static 'photo.css' %}" media="all" rel="stylesheet" type="text/css" >
|
|
</head>
|
|
<body>
|
|
<div id="camera">
|
|
<div class="placeholder">
|
|
Your browser does not support camera access.<br>
|
|
We recommend
|
|
<a href="https://www.google.com/chrome/" target="_blank">Chrome</a>
|
|
— modern, secure, fast browser from Google.<br>
|
|
It's free.
|
|
</div>
|
|
</div><br>
|
|
|
|
<button id="take_snapshots">Take Picture</button>
|
|
|
|
<div id="snapshots"></div>
|
|
|
|
<button id="discard_snapshot">Discard snapshot</button>
|
|
<button id="upload_snapshot">Upload to URL</button><br>
|
|
|
|
<img src="{% static 'loader.gif' %}" id="loader" alt="loading">
|
|
<div id="upload_status"></div>
|
|
<div id="upload_result"></div>
|
|
</body>
|
|
</html>
|