
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8"/>
    <title>Login-Training Workshop</title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <link rel="shortcut icon" href="favicon.ico"/>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
    <style>
        body {
            background-color: #f0f4f8;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .login-container {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background: linear-gradient(120deg, #d4e157, #81c784);
        }

        .login-form {
            background-color: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 400px;
            transition: transform 0.3s ease;
        }

        .login-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
        }

        .form-title {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
            font-size: 2em;
            font-weight: bold;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .input-icon {
            position: relative;
        }

        .input-icon i {
            position: absolute;
            left: 10px;
            top: 12px;
            color: #007bff;
        }

        .form-control {
            padding: 10px 40px;
            border-radius: 25px;
            border: 1px solid #ced4da;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
        }

        .btn-primary {
            background-color: #007bff;
            border: none;
            border-radius: 25px;
            padding: 10px;
            font-size: 16px;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }

        .footer-links {
            text-align: center;
            margin-top: 20px;
            font-size: 0.85em; /* Smaller font size */
        }

        .footer-links a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            text-decoration: underline;
            color: #0056b3; /* Change color on hover */
        }

        .forgot-password {
            display: inline-block;
            font-size: 0.85em; /* Smaller font size for the link */
            margin-top: 10px; /* Added margin for spacing */
        }

        .alert {
            margin-bottom: 20px;
        }

        .invalid-feedback {
            color: red; /* Style for error messages */
            font-size: 0.9em;
        }
    </style>
</head>
<body>
<div class="login-container">
    <div class="login-form">
        



<div style="text-align: center; margin-bottom: 15px;">
  <h5 style="
      color: #d93025;
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 5px;
      text-transform: uppercase;
  ">
   Workshop on Pathology of
  </h5>
  <h4 style="
      color: #d93025;
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 8px;
  ">
   Animals Diseases
  </h4>
  <div style="
      width: 90%;
      height: 2px;
      background-color: #d93025;
      margin: 0 auto;
      border-radius: 2px;
  "></div>
</div>

                        
        <form action="http://wrms.uvas.edu.pk/Auth/check_login" method="post">
            <input type="hidden" name="_token" value="tnM2nkDzhxuNdgLbS7z9WSziQbJJ5V00mgvK7HNW">            <div class="form-group">
                <label class="control-label">Email ID</label>
                <div class="input-icon">
                    <i class="fas fa-user"></i>
                    <input type="email" name="email" id="email" class="form-control placeholder-no-fix" autocomplete="off" placeholder="Enter Your Registered Email" value="" required/>
                                    </div>
            </div>

            <div class="form-group">
                <label class="control-label">Password</label>
                <div class="input-icon">
                    <i class="fas fa-lock"></i>
                    <input type="password" name="password" id="password" class="form-control placeholder-no-fix" autocomplete="off" placeholder="Password" required/>
                                    </div>
            </div>

            <div class="form-actions">
                <button type="submit" class="btn btn-primary">
                    Login <i class="m-icon-swapright m-icon-white"></i>
                </button>
            </div>

            <div class="footer-links">
                <span class="forgot-password">Forgot your password? <a href="http://wrms.uvas.edu.pk/Auth/forget_password">Reset it here</a></span>
                <p>
                    Don't have an account yet? &nbsp; <a href="http://wrms.uvas.edu.pk/Auth/create_signup">Create an account</a>
                </p>
            </div>
        </form>
    </div>
</div>

<!-- BEGIN JAVASCRIPTS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>
