Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <title>PARROT - Contact</title> | |
| <link rel="stylesheet" type="text/css" href="style.css"> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> | |
| </head> | |
| <body> | |
| <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top"> | |
| <a class="navbar-brand" href="#">PARROT</a> | |
| <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" | |
| aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> | |
| <span class="navbar-toggler-icon"></span> | |
| </button> | |
| <div class="collapse navbar-collapse" id="navbarNav"> | |
| <div class="navbar-nav"> | |
| <a class="nav-link" href="index.html">Home</a> | |
| <a class="nav-link" href="documentation.html">Documentation</a> | |
| <a class="nav-link" href="ai_models.html">AI models</a> | |
| <a class="nav-link active" href="#">Contact</a> | |
| </div> | |
| </div> | |
| </nav> | |
| <div class="container mt-5"> | |
| <div class="row"> | |
| <div class="col-lg-11"> | |
| <h1 class="mb-4 mt-4">Contact Us</h1> | |
| <p>If you have any questions or want to share information about your AI model, please use the form below.</p> | |
| <form action="#" method="post"> | |
| <div class="form-group"> | |
| <label for="name">Your Name</label> | |
| <input type="text" class="form-control" id="name" name="name" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="email">Your Email</label> | |
| <input type="email" class="form-control" id="email" name="email" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="inputDescription">Describe Your AI Model</label> | |
| <textarea class="form-control" id="inputDescription" name="description" rows="5" required></textarea> | |
| </div> | |
| <div class="form-group"> | |
| <label for="inputInput">Input Details</label> | |
| <input type="text" class="form-control" id="inputInput" name="input" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="outputOutput">Output Details</label> | |
| <input type="text" class="form-control" id="outputOutput" name="output" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="trainingSetSize">Training Set Size</label> | |
| <input type="text" class="form-control" id="trainingSetSize" name="trainingSetSize" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="numberOfEpochs">Number of Epochs</label> | |
| <input type="text" class="form-control" id="numberOfEpochs" name="numberOfEpochs" required> | |
| </div> | |
| <button type="submit" class="btn btn-primary">Submit</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script> | |
| <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | |
| </body> | |
| </html> | |