summaryrefslogtreecommitdiff
path: root/chef-server-slice/app/views/openid_server/decide.html.haml
blob: d08b50cd4b3d8f643b9e0acfdf1d770265fff092 (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 => slice_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"}