-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsers.html
55 lines (48 loc) · 1.68 KB
/
Users.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forms</title>
</head>
<body background="https://media.giphy.com/media/3o6ZtcZCYVzROMckY8/giphy.gif">
<a href="Navegador.html"> Go back to initial page </a>
<center><h1> Make us a better team!</h1><br>
Help us updating our repository!
<a href="https://github.com/rijema/LPF"> See the project on Github </a>
</center>
<h2> Login </h2>
<form>
User:<br>
<input type="text" name="login"><br>
Password:<br>
<input type="password" name="senha"><br><br>
<input type="submit" value="Log in">
</form>
<form>
<h2> Join us! </h2>
Login: <br>
<input type="text" name="login"><br><br>
Sex: <br>
<input type="radio" name="sex" value="M"> Male <br>
<input type="radio" name="sex" value="F"> Female <br>
<input type="radio" name="sex" value="N"> Not answer <br><br>
E-mail: <br>
<input type="text" name="login"><br><br>
Programming Languages: <br>
<input type="checkbox" name="knowledge"> Kotlin <br>
<input type="checkbox" name="knowledge"> Java <br>
<input type="checkbox" name="knowledge"> Python <br>
<input type="checkbox" name="knowledge"> Scala <br>
<input type="checkbox" name="knowledge"> Cobol <br><br>
Professor: <br>
<select>
<option value="luis"> Luís </option>
<option value="byron"> Byron </option>
<option value="thyago"> Thyago </option>
</select> <br> <br>
Any comments? <br>
<textarea> </textarea> <br><br>
<input type="submit" value="Apply">
</form>
</body>
</html>