Files

29 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2026-06-17 22:30:32 -04:00
<div class="w-full flex flex-col items-center">
2026-06-12 15:40:12 -04:00
<div class="text-4xl mb-10">
Network Directory Admin
</div>
2026-06-17 22:30:32 -04:00
<div class="flex flex-col space-y-10 mt-10">
<a href="/admin/local_network" class="inline-block w-50 px-3 py-1 text-center font-semibold text-[#<%= @dark_hex %>] bg-[#<%= @light_hex %>] border-2 border-[#<%= @light_hex %>] rounded-lg hover:text-[#<%= @accent_hex %>] hover:bg-[#<%= @dark_hex %>] hover:border-[#<%= @accent_hex %>] transition-colors duration-200">
2026-06-12 15:40:12 -04:00
Local Network
</a>
2026-06-17 22:30:32 -04:00
<a href="/admin/machines" class="inline-block w-50 px-3 py-1 text-center font-semibold text-[#<%= @dark_hex %>] bg-[#<%= @light_hex %>] border-2 border-[#<%= @light_hex %>] rounded-lg hover:text-[#<%= @accent_hex %>] hover:bg-[#<%= @dark_hex %>] hover:border-[#<%= @accent_hex %>] transition-colors duration-200">
2026-06-12 15:40:12 -04:00
Machines
</a>
2026-06-17 22:30:32 -04:00
<a href="/admin/service_types" class="inline-block w-50 px-3 py-1 text-center font-semibold text-[#<%= @dark_hex %>] bg-[#<%= @light_hex %>] border-2 border-[#<%= @light_hex %>] rounded-lg hover:text-[#<%= @accent_hex %>] hover:bg-[#<%= @dark_hex %>] hover:border-[#<%= @accent_hex %>] transition-colors duration-200">
2026-06-12 15:40:12 -04:00
Service Types
</a>
2026-06-17 22:30:32 -04:00
<a href="/admin/services" class="inline-block w-50 px-3 py-1 text-center font-semibold text-[#<%= @dark_hex %>] bg-[#<%= @light_hex %>] border-2 border-[#<%= @light_hex %>] rounded-lg hover:text-[#<%= @accent_hex %>] hover:bg-[#<%= @dark_hex %>] hover:border-[#<%= @accent_hex %>] transition-colors duration-200">
2026-06-12 15:40:12 -04:00
Services
</a>
2026-06-17 22:30:32 -04:00
<a href="/" class="inline-block w-50 px-3 py-1 mt-20 text-center font-semibold text-[#<%= @dark_hex %>] bg-[#F80800] border-2 border-[#F80800] rounded-lg hover:text-[#F80800] hover:bg-[#<%= @dark_hex %>] hover:border-[#F80800] transition-colors duration-200">
Back to Directory
</a>
2026-06-12 15:40:12 -04:00
</div>
2026-06-17 22:30:32 -04:00
</div>