Make WordPress Core

Ticket #43154: jaws-test-01.diff

File jaws-test-01.diff, 633 bytes (added by afercia, 7 years ago)
  • src/wp-admin/options-reading.php

     
    5050<div class="wrap">
    5151<h1><?php echo esc_html( $title ); ?></h1>
    5252
     53<form>
     54        <fieldset>
     55                <legend>Do you have a passport?</legend>
     56
     57                <input type="radio" id="yes" name="passport">
     58                <label for="yes">Yes</label>
     59
     60                <input type="radio" id="no" name="passport">
     61                <label for="no">No</label>
     62        </fieldset>
     63</form>
     64
    5365<form method="post" action="options.php">
    5466<?php
    5567settings_fields( 'reading' );