30 lines
389 B
PHP
30 lines
389 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test Upload Barcode</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Upload Foto Barcode</h2>
|
|
|
|
<form
|
|
action="api/upload_cam.php"
|
|
method="POST"
|
|
enctype="multipart/form-data"
|
|
>
|
|
|
|
<input
|
|
type="file"
|
|
name="foto"
|
|
accept="image/*"
|
|
required
|
|
>
|
|
|
|
<button type="submit">
|
|
Upload
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html> |