Spaces:
Configuration error
Configuration error
File size: 1,236 Bytes
59416c7 1f85ff0 59416c7 |
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 |
<!DOCTYPE html>
<html>
<head>
<title>้ฆ้กต</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>ๅพๅ้ฃๆ ผ่ฟ็งปโโๅก้ๅๅ็ป</h1>
<!--ไธไผ ๆไปถๅฟ
้กปๅ enctype="multipart/form-data-->
<form action="/" method="post" enctype="multipart/form-data">
้ฃๆ ผๅพ1: <input type="file" name="image1" accept="image/*">
้ฃๆ ผๅพ2: <input type="file" name="image2" accept="image/*">
<input type="submit" name="submit" value="ไธไผ ">
</form>
<!-- <img src="static/2.jpg"> -->
<h1>ๅค็ๅ็ๅพ็๏ผ</h1>
<img src="{{ url_for('static', filename=filename1 ) }}" alt="ๅค็ๅ็ๅพ็1">
<img src="{{ url_for('static', filename=filename2 ) }}" alt="ๅค็ๅ็ๅพ็2">
<h1>ๅค็ๅ็ๅพ็๏ผ</h1>
<!-- <img src="{{ url_for('static', filename='uploads/image_path' ) }}" alt="ๅค็ๅ็ๅพ็">
-->
<img src="{{ url_for('static', filename=image_path ) }}" alt="ๅค็ๅ็ๅพ็">
<br>
{% if image_path %}
<a href="{{ url_for('static', filename=image_path) }} " download>็นๅปไธ่ฝฝ็ๆ็ๅพ็</a>
{% endif %}
</body>
</html>
|