UrlManipulator-php/web-client/index.html

25 lines
815 B
HTML
Raw Normal View History

2023-12-12 19:46:11 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>URL Manipulator</title>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container">
<h2>URL Manipulator</h2>
<div id="result-container">
<!-- Results or errors will be displayed here -->
</div>
<form id="url-form">
<label for="url">Enter a valid URL:</label>
<textarea id="url" name="url" rows="4" cols="50" required></textarea>
<button type="button" onclick="manipulateUrl()">Manipulate URL</button>
</form>
</div>
</body>
</html>