mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
295 B
Plaintext
15 lines
295 B
Plaintext
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>Hello World JSP</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World!</h1>
|
|
<% String name = "John"; %>
|
|
<p>Welcome <%= name %>!</p>
|
|
<script>
|
|
console.log(123);
|
|
</script>
|
|
</body>
|
|
</html>
|