-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdraw.html
29 lines (25 loc) · 956 Bytes
/
draw.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
<!DOCTYPE html>
<html>
<head>
<title>Drawing App</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles_draw.css') }}">
<script type="text/javascript" src="{{ url_for('static', filename='draw.js') }}"></script>
</head>
<header>
Drawing App
</header>
<body>
<form id = "myForm" action="{{ url_for('predict')}}" method="POST" enctype="multipart/form-data">
<canvas id="canvas", name ="draw" width="400" height="400">
<script type="text/javascript">
$(document).ready(function() {
drawCanvas();
});
</script>
</canvas>
<input type="hidden" id = 'url' name="url" value="">
<input type="submit" id = 'predict' value="Predict" onclick="return save();">
</form>
</body>
</html>