You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
523 B
19 lines
523 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ATM Application Launcher</title>
|
|
</head>
|
|
<body>
|
|
<h1>ATM Application</h1>
|
|
<p>Click the button below to launch the ATM application:</p>
|
|
<button onclick="launchApp()">Launch ATM</button>
|
|
|
|
<script>
|
|
function launchApp() {
|
|
// This will try to launch the Java application
|
|
// Note: This may not work in all browsers due to security restrictions
|
|
window.location.href = 'cstatm-mte.jnlp';
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |