Skip to content

Commit 5ba0ebe

Browse files
committed
add missing login.html starter file
1 parent 3fa02b1 commit 5ba0ebe

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

starter-files/login.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<div class="mx-auto">
2+
<div class="flex justify-center flex-row w-full leading-loose text-3xl">
3+
Login
4+
</div>
5+
<div class="flex justify-center flex-row w-full">
6+
<div class="w-full max-w-xs">
7+
<form class="bg-grey-light shadow-md rounded px-8 pt-6 pb-8 mb-4">
8+
<div class="inline-block relative w-64 mt-2">
9+
<select
10+
class="block appearance-none w-full bg-white border border-grey-light hover:border-grey px-4 py-2 pr-8 rounded shadow leading-tight focus:outline-none focus:shadow-outline">
11+
<option value="" disabled>Select a user</option>
12+
<option value="1">Testy Testerson</option>
13+
<option value="2">Sample McData</option>
14+
</select>
15+
<div class="pointer-events-none absolute pin-y pin-r flex items-center px-2 text-grey-darker">
16+
<svg class="fill-current h-4 w-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
17+
<path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z"></path>
18+
</svg>
19+
</div>
20+
</div>
21+
<p class="text-blue text-xs italic my-4">
22+
A validation message
23+
</p>
24+
<div class="flex items-center justify-between">
25+
<input class="bg-grey text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline"
26+
value="Sign In" type="submit" />
27+
</div>
28+
</form>
29+
</div>
30+
</div>
31+
</div>

0 commit comments

Comments
 (0)