mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:01:02 +08:00
18 lines
291 B
HTML
18 lines
291 B
HTML
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="logo"></div>
|
|
<div id="input">
|
|
<input id="name" type="text"></input>
|
|
<button onclick="greet()">Greet</button>
|
|
</div>
|
|
<div id="result"></div>
|
|
|
|
<script src="/main.js"></script>
|
|
</body>
|
|
|
|
</html> |