24 lines
591 B
HTML
24 lines
591 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>demo_project</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<form onsubmit="myPersonalFinanceManager.addTrade(event)">
|
|
|
|
<input type="text">
|
|
<select name="" id="form_select">
|
|
<option value=""></option>
|
|
</select>
|
|
<button>Lưu Giao Dịch</button>
|
|
</form>
|
|
|
|
<script src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|