summaryrefslogtreecommitdiff
path: root/templates/8021x.html
blob: 83a5de4f40cc3db5a9d08ab3d85d3af6820fdc2e (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
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:py="http://genshi.edgewall.org/"
	xmlns:i18n="http://genshi.edgewall.org/i18n"
	xmlns:sub="http://local.sublab.org/subdap/xmlns-templates"
	xmlns:xi="http://www.w3.org/2001/XInclude">
 <xi:include href="layout.xi"/>
 <head>
  <title>login</title>
 </head>
 <sub:bodylarge>
  <div class="cont">
   <h1>wpa_supplicant WPA-EAP template</h1>
   <pre xml:lang="C">network={
	scan_ssid=1
	ssid="crew.sublab.org"

	key_mgmt=WPA-EAP
	eap=TTLS
	phase2="auth=PAP"

	identity="${username}"
	password="<b style="color:red;background-color:white">${_("insert password here")}</b>"

	anonymous_identity="bernd"
	ca_cert="<a href="${url('static/cacert.org.pem')}">/etc/ssl/certs/cacert.org.pem</a>"
	altsubject_match="DNS:taifun.local.sublab.org"
	priority=500
}
   </pre>
  </div>
 </sub:bodylarge>
</html>