-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c471278
commit 5b171b9
Showing
2 changed files
with
26 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,28 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="/src/assets/stylesheets/application.scss" /> | ||
<title>Vite App</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="/src/assets/stylesheets/application.scss" /> | ||
<title>Vite App</title> | ||
</head> | ||
|
||
<body> | ||
<form action=""> | ||
<tailored-select name='record[association][]' id='record_association' placeholder='Select Records'> | ||
<option value='1' selected>Record 1</option> | ||
<option value='2'>Record 2</option> | ||
<option value='3'>Record 3</option> | ||
<option value='4'>Record 4</option> | ||
<option value='5'>Record 5</option> | ||
<option value='6'>Record 6</option> | ||
<option value='7'>Record 7</option> | ||
<option value='8'>Record 8</option> | ||
<option value='9'>Record 9</option> | ||
<option value='10'>Record 10</option> | ||
</tailored-select> | ||
</form> | ||
<script type="module" src="/src/assets/javascript/application.js"></script> | ||
</body> | ||
|
||
<body> | ||
<form action=""> | ||
<tailored-select name="record[association][]" id="record_association" placeholder="Select Records"> | ||
<option value="1" selected>Record 1</option> | ||
<option value="2">Record 2</option> | ||
<option value="3">Record 3</option> | ||
<option value="4">Record 4</option> | ||
<option value="5">Record 5</option> | ||
<option value="6">Record 6</option> | ||
<option value="7">Record 7</option> | ||
<option value="8">Record 8</option> | ||
<option value="9">Record 9</option> | ||
<option value="10">Record 10</option> | ||
</tailored-select> | ||
</form> | ||
<script type="module" src="/src/assets/javascript/application.js"></script> | ||
</body> | ||
</html> |