aboutsummaryrefslogtreecommitdiffstats
path: root/views/index.erb
blob: ad2bf2d5448cbbeca56625bbac536f2c1f9b1ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>Ruby Session Exercise</title>
</head>
<body>
	<h1>Login</h1>
	
	<form action="." method="post">
		<div>
			Username: <input type="text" name="username" />
		</div>
		
		<div>
			Password: <input type="text" name="password" />
		</div>
		
		<div>
			<input type="submit" value="Login" />
		</div>
	</form>
</body>
</html>