summaryrefslogtreecommitdiff
path: root/templates/apps/userprofile/sshkey.html
blob: b2c1fcaa8e1d3a3d198613b3451d95da5c53c891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "edit_fieldsets.html" %}
{% block widgets %}
    $('#wizard').formwizard({
    	validationEnabled: true,
    	focusFirstInput: true,
    	textSubmit: "Submit",
    	validationOptions: {
    		rules: {
    			sshkey: 'required'
    		}
    	}
    });
{% endblock %}