22 lines
323 B
HTML
22 lines
323 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<input id="value_id" value='{{ id }}' />
|
|
<br>
|
|
|
|
<button onclick="Index_clicked()">首頁</button>
|
|
</body>
|
|
|
|
|
|
</html>
|
|
|
|
|
|
<script>
|
|
function Index_clicked(){
|
|
window.location = "/";
|
|
}
|
|
</script> |