17 lines
511 B
HTML
17 lines
511 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<img style="width: 50px; height: 50px;" src="" alt="file ban upload">
|
|
<form onsubmit="upload(event)">
|
|
<input name="icon" type="file">
|
|
<button>upload</button>
|
|
</form>
|
|
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |