Skip to content

Commit

Permalink
Cleanup and prettification
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh committed May 17, 2024
1 parent 2808bc9 commit e2e687c
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions src/ontogpt/webapp/html/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,42 @@
<head>
<meta charset="UTF-8">
<title>OntoGPT SPIRES: Enter text</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

form {
margin: 20px;
}

select, textarea {
width: 100%;
padding: 5px;
margin-bottom: 10px;
}

input[type="submit"] {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}

.footer {
background-color: #f1f1f1;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<div>
<form method="post">
<h1>Information Extraction with SPIRES</h1>
<div>
Select Schema:
<select name="datamodel" id="datamodel">
Expand All @@ -24,12 +56,12 @@
</select>
</div> -->
<div>
<textarea name="text" rows="20" cols="80">enter text here (e.g. pubmed abstract)
<textarea name="text" rows="20" cols="80">Enter text here (e.g. PubMed abstract)
</textarea>
</div>
<input type="submit">
<div>
<i><please be patient, can take up to 10s)</i>
<i>please be patient, can take up to 10s</i>
</div>
</form>
</div>
Expand Down

0 comments on commit e2e687c

Please sign in to comment.