You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
724 B
25 lines
724 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<title>Web Portal</title> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet"> |
|
<style> |
|
* { |
|
font-size: 100%; |
|
font-family: 'Inconsolata', monospace; |
|
|
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<form method="post" action="{{ url_for('removed') }}"> |
|
{% for mac in macs %} |
|
<input type="checkbox" name="mac" value="{{mac[0]}}">{{mac[0]}} {{mac[1]}} |
|
<br> |
|
{% endfor %} |
|
<button type="submit" formaction="/removed">Remove!</button> |
|
</form> |
|
</body> |
|
</html>
|
|
|