Skip to content
Snippets Groups Projects
Select Git revision
  • 994a7c00bacb025b012defb0716cb8b8b2fa17eb
  • develop default protected
  • ci_test_temp
  • master protected
  • rodin2
  • rodin3
  • feature/theory_plugin
  • feature/multiview
  • csp
  • feature/newcore
  • feature/csp
  • 3.2.1
  • 3.0.11
  • 3.0.8
  • 3.0.5
  • 2.4.1
  • 2.3.3
  • 2.3.2
  • 2.3.1
  • 2.3.0_fix1
  • 2.3.0
21 results

settings.gradle

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    semSearch.html 814 B
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>HHU Search Helper - Combined</title>
      <link rel="stylesheet" href="styles.css">
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
      <style>
        body { 
          overflow: hidden;
        }
      </style>
    </head>
    <body>
      
      <div id="chatbox">
        <div id="chatbox-title">Ask hAInrich</div>
        <div id="messages"></div>
        <div id="messageInfo"></div>
        <div id="input-container">
          <input type="text" id="user-input" placeholder="Try asking: 'minimum admission grade' or 'I'm from outside the EU'">
          <button onclick="sendAsk()">Ask</button>
          
          
        </div>
        <div id="results"></div>
      
      </div>
    
      <script type="module" src="index.js" async></script>
    
    </body>
    </html>