Files
arif_grafin/CONTENT/ROOT_URI/Admin/Agent/add_agent.php
2025-08-28 13:18:44 +00:00

8 lines
255 B
PHP

<?php
echo "<h3>Add New Agent</h3>";
// Your form to add new agent
echo "<form method='POST' action='?action=save'>
<input type='text' name='agent_name' placeholder='Agent Name'>
<button type='submit'>Save Agent</button>
</form>";
?>