<!doctype html>
<html>
<head>
<%- include("./partials/head") %>
<title>Add Server</title>
</head>
<body>
<%- include("./partials/alert") %>
<section class="py-3 py-md-5">
<div class="container">
<div class="row justify-content-md-center">
<div class="col-12 col-md-10 col-lg-8 col-xl-7 col-xxl-6">
<h2 class="mb-2 display-5 text-center">Add Server</h2>
<p class="text-secondary mb-3 text-center">
Add a server to your bot. You can later add a service and connect
it with your added server.
</p>
<hr class="w-50 mx-auto mb-5 mb-xl-9 border-dark-subtle" />
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-lg-center">
<div class="col-12 col-lg-9">
<div class="bg-white border rounded shadow-sm overflow-hidden">
<form id="add-form">
<div class="row gy-4 gy-xl-5 p-4 p-xl-5">
<div class="col-12">
<label for="name" class="form-label"
>Server Name <span class="text-danger">*</span></label
>
<input
type="text"
class="form-control"
id="name"
name="name"
placeholder="Server 1"
value="<%= myServer?.server_name %>"
required
/>
</div>