Untitled

 avatar
unknown
plain_text
6 months ago
2.9 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Novell Services Login</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #f5f5f5;
    }
    form {
      width: 350px;
      padding: 20px;
      border: 1px solid #000;
      border-radius: 8px;
      background-color: #fff;
      text-align: left;
      margin-top: 20px; /* Adds space at the top */
    }

    }
    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    input, select, button {
      width: 100%;
      padding: 8px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .radio-group, .checkbox-group {
      margin-bottom: 15px;
    }
    .radio-group label, .checkbox-group label {
      display: block;
    }
    .button-group {
      display: flex;
      justify-content: space-between;
    }
    button {
      width: 48%;
      padding: 10px;
      font-size: 14px;
    }
  </style>
</head>
<body>
  <form>
    <h1> <center>Novell Services Login</h1> </center>
    <label for="username">Username:</label>
    <input type="text" id="username" name="username" required>

    <label for="password">Password:</label>
    <input type="password" id="password" name="password" required>

    <label for="city">City of Employment:</label>
    <input type="text" id="city" name="city">

    <label for="server">Web server:</label>
    <select id="server" name="server">
      <option value="" disabled selected>-- Choose a server --</option>
      <option value="server1">Server 1</option>
      <option value="server2">Server 2</option>
      <option value="server3">Server 3</option>
    </select>

    <div class="radio-group">
      <label>Please specify your role:</label>
      <label><input type="radio" name="role" value="admin"> Admin</label>
      <label><input type="radio" name="role" value="engineer"> Engineer</label>
      <label><input type="radio" name="role" value="manager"> Manager</label>
      <label><input type="radio" name="role" value="guest"> Guest</label>
    </div>

    <div class="checkbox-group">
      <label>Single Sign-on to the following:</label>
      <label><input type="checkbox" name="sso" value="mail"> Mail</label>
      <label><input type="checkbox" name="sso" value="payroll"> Payroll</label>
      <label><input type="checkbox" name="sso" value="self-service"> Self-service</label>
    </div>

    <div class="button-group">
      <button type="submit">Login</button>
      <button type="reset">Reset</button>
    </div>
  </form>
</body>
</html>
Editor is loading...
Leave a Comment