<!DOCTYPE html>
<html>

<head>
    <title>Registration Form</title>
    <meta charset="utf-8">
    <meta content="width=device-width, initial-scale=1" name="viewport">
    <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
          integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;700&display=swap"
          rel="stylesheet">
    <style>
        .bd-placeholder-img {
            font-size: 1.125rem;
            text-anchor: middle;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        .myPadding {
            padding: 10px 10px 10px 10px;
        }

        @media (min-width: 768px) {
            .bd-placeholder-img-lg {
                font-size: 3.5rem;
            }
        }
        /* Global font for all elements using IBM Plex Sans with weight 100 */
        body {
            font-family: 'IBM Plex Sans', sans-serif;
            font-weight: 300;
        }

        /* Custom font weights for headers */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 400; /* Normal weight for headings */
        }

        /* Bold font for specific use case */
        strong {
            font-weight: 700; /* Bold text */
        }
    </style>

</head>

<body>
<div class="container row justify-content-md-start">
    <div>
        <div class="col-md-3" style="margin-top: 10px;">
            <img alt="Logo" class="img-fluid" src="/logo.png" style="width: 100px;">
        </div>
    </div>
</div>
<div class="container">
    <div class="row justify-content-center">
        <div class="col-md-12 text-center" style="margin-top: 10px;">
            <img alt="Error" class="img-fluid" src="/error.jpg"
                 style="width: 400px; box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.2);">
        </div>
    </div>
</div>

<div class="row">

</div>
<div class="container">
    <div class="row">
        <div class="col-md-4"></div>
        <div class="col-md-4 col-md-offset-2 col-sm-6 col-sm-offset-2" id="loginbox"
             style="margin-top: 50px;">

            <div class="card border-error">

                <div class="card-header bg-error">
                    Oops something went wrong.
                </div>

                <div class="card-body">

                    <div class="card-text">
                        <div>
                            <a aria-pressed="true" class="btn btn-primary mt-3" role="button"
                               href="/showMyLoginPage">Login</a>
                        </div>
                        <div>
                            <a aria-pressed="true" class="btn btn-primary mt-3" role="button"
                               href="/allCompounds">Show all compounds</a>
                        </div>
                        <div>
                            <a aria-pressed="true" class="btn btn-primary mt-3" role="button"
                               href="/add-reagent">Add new reagent</a>
                        </div>
                    </div>

                </div>

            </div>
        </div>
        <div class="col-md-4"></div>
    </div>

</div>

</body>
</html>