summaryrefslogtreecommitdiff
path: root/lib/chef_server/views/openid_server/decide.html.haml
blob: 8082a5068d365980cc99148e293dc51bc2fb82e8 (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
%form{:method => "post", :action => url(:openid_server_decision)}
  %table
    %tr
      %td Site:
      %td= @oidreq.trust_root
    - if @oidreq.id_select
      %tr
        %td{:colspan => "2"}
          You entered the server identifier at the relying party. 
          You will need to send an identifier of your choosing.  
          Enter a username and password below.
      %tr
        %td Identity to send:
        %td
          %input{:type => "text", :name => "id_to_send", :size => "25"}
    - else
      %tr
        %td Identity:
        %td= @oidreq.identity
      %tr
        %td
          %label{:for => "password"} Password:
        %td
          %input{:type => "password", :name => "password"}
  %input{:type => "submit", :name => "submit", :value => "Authenticate"}
  %input{:type => "submit", :name => "cancel", :value => "Cancel"}