Skip to content

Commit

Permalink
Auth mechanism working
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasareed committed Jul 5, 2011
1 parent 514de43 commit 1c8c357
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions PHP/DocuSignSample/senddocument.php
Expand Up @@ -531,13 +531,13 @@ function EnableDisableDiv() {
<input type="email" name="RecipientEmail[1]" id="txtRow1" value="nicholas.a.reed@gmail.com">
</td>
<td>
<select id="RecipientSecurity1" name="RecipientSecurity[1]">
<select id="RecipientSecurity1" name="RecipientSecurity[1]" onchange="EnableDisableInput(1);">
<option value="None">None</option>
<option value="IDCheck">ID Check</option>
<option value="AccessCode">Access Code:</option>
<option value="PhoneAuthentication">Phone Authentication</option>
</select>
<input type="text" name="RecipientSecuritySetting[1]" id="RecipientSecuritySetting1" value="12345" style="display: none; ">
<input type="text" name="RecipientSecuritySetting[1]" id="RecipientSecuritySetting1" value="12345" style="display: none;">
</td>
<td>
<ul class="switcher">
Expand All @@ -553,6 +553,8 @@ function EnableDisableDiv() {
</tr>
</table>
<input type="button" onclick="addRecipientRowToTable()" value="Add Recipient"/>
<br />
<br />
<div id="files" style="display:none;">
<p>
Document #1:
Expand Down Expand Up @@ -619,7 +621,8 @@ function EnableDisableDiv() {
</td>
</tr>
</table>
<p />
<br />
<br />
<table class="submit">
<tr>
<td>
Expand Down

0 comments on commit 1c8c357

Please sign in to comment.