View difference between Paste ID: 6YhjSUkB and eSYAfhMD
SHOW: | | - or go back to the newest paste.
1
<?php include 'head.php' ?>
2
<div class='row-fluid'>
3
        <div class='span10 offset1'>
4
                <h3> Submit an API Key</h3><br>
5
                <form>
6
                        <div class="control-group">
7
                                <label class="control-label" for="KeyID">Key ID:</label>
8
                                <div class="controls">
9-
                                        <input class="input-small"  type="text" id="inputKeyID" placeholder="Key ID">
9+
                                        <input class="input-small" name="inputKeyID" type="text" id="inputKeyID" placeholder="Key ID">
10
                                </div>
11
                        </div>
12
 
13
                        <div class="control-group">
14
                                <label class="control-label" for="VerificationCode">Verification Code:</label>
15
                                <div class="controls">
16-
                                        <input class="input-xxlarge" type="text" id="inputVerfiication" placeholder="Verification Code:">
16+
                                        <input class="input-xxlarge" type="text" id="inputVerification" placeholder="Verification Code:" name="inputVerification">
17
                                </div>
18
                        </div>
19
                        <div class="control-group">
20
                                <div class="controls">
21
                                        <button type="submit" name="submit" class="btn">Submit API</button>
22
                                </div>
23
                        </div>
24
                </form>
25
        </div>
26
</div>
27
28
<?php include 'footer.php' ?>