initial commit 2

This commit is contained in:
equippedcoding-master
2025-09-17 15:19:57 -05:00
parent e2c98790b2
commit 1c59875b8a
55391 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Domain Administration</title>
<!-- <link rel="stylesheet" href="style.css"> -->
</head>
<body>
<button id="back">Back</button>
<script src="index.js"></script>
<script>
document.getElementById('back').addEventListener('click',function(e){
window.location.href = '../';
});
</script>
</body>
</html>