25 lines
854 B
HTML
25 lines
854 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Flask-Avatars Demo</title>
|
|
{{ avatars.jcrop_css() }} <!-- include jcrop css -->
|
|
<style>
|
|
<!-- some css to make a better preview window -->
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Step 2: Crop</h1>
|
|
{{ avatars.crop_box('get_avatar', session['raw_filename']) }} <!-- crop window -->
|
|
{{ avatars.preview_box('get_avatar', session['raw_filename']) }} <!-- preview widow -->
|
|
<form method="post">
|
|
<input type="hidden" id="x" name="x">
|
|
<input type="hidden" id="y" name="y">
|
|
<input type="hidden" id="w" name="w">
|
|
<input type="hidden" id="h" name="h">
|
|
<input type="submit" value="Crop!">
|
|
</form>
|
|
{{ avatars.jcrop_js() }} <!-- include jcrop javascript -->
|
|
{{ avatars.init_jcrop() }} <!-- init jcrop -->
|
|
</body>
|
|
</html> |