receive an email to change your password.
            </p>
        </div>
        <!-- instructions end -->

        <!-- forgot password start -->
        <form method="post" action="../scripts/password.php">
            <div class="col-xs-4 form-group-lg">
                <label class="text-danger">&nbsp
                    <?php 
echo SessionOperator::getInputErrors("email");
?>
                </label>
                <input type="text" name="email" class="form-control" id="email" maxlength="45" placeholder="Enter your email here"
                    <?php 
echo 'value = "' . SessionOperator::getFormInput("email") . '"';
?>
 >
            </div>
            <div class="col-xs-8">
                <label>&nbsp</label><br>
                <button type="submit" name="resetPassword" id="resetPassword" class="btn btn-success btn-lg">Reset Password</button>
            </div>
        </form>
        <!-- forgot password end -->

    </div>
    <!-- main end -->

    <!-- footer start -->
    <?php 
echo count($bids);
?>
 bids</p>
                            </div>
                            <?php 
if (!$isMyAuction) {
    ?>
                                <form method="GET" action="../scripts/place_bid.php">
                                    <div class="col-xs-8">
                                        <input type="hidden" name="auctionId" value="<?php 
    echo $auction->getAuctionId();
    ?>
">
                                        <input type="text" class="form-control" name="bidPrice" maxlength="11" style="height: 30px"
                                            <?php 
    echo 'value = "' . SessionOperator::getFormInput("bidPrice") . '"';
    ?>
 ><br>
                                    </div>
                                    <div class="col-xs-4">
                                        <button type="submit" class="btn btn-primary" style="height: 30px; padding: 4px 12px">Place Bid</button>
                                    </div>
                                </form>

                                <div class="col-xs-12">
                                    <?php 
    if (!$alreadyWatching) {
        $href = '"../scripts/create_watch.php?' . $_SERVER['QUERY_STRING'] . '"';
        echo '<a href=' . $href . '><i class="fa fa-eye"></i> Add to watch list</a>';
    } else {
        echo "<a class=\"text-success\" href=\"my_watch_list_view.php#auction{$auction->getAuctionId()}\"><i class=\"fa fa-eye\"></i> Watching</a>";
?>
 >
                                    <span class="input-group-addon">
                                        <span class="glyphicon glyphicon-calendar"></span>
                                    </span>
                                </div>
                            </div>
                        </div>

                        <div class="col-xs-3">
                            <label>End Time</label>
                            <div class="form-group">
                                <div class='input-group date' id='datetimepickerEnd'>
                                    <input type='text' class="form-control" name="endTime" readonly
                                        <?php 
echo 'value = "' . SessionOperator::getFormInput("endTime") . '"';
?>
 >
                                    <span class="input-group-addon">
                                        <span class="glyphicon glyphicon-calendar"></span>
                                    </span>
                                </div>
                            </div>
                        </div>

                    </div>
                </div>
                <!-- auction details end -->


                <!-- submit auction start -->
Пример #4
0
                        <input type="password" name="password1" class="form-control" id="password1" maxlength="23" placeholder="Create a password"
                            <?php 
echo 'value = "' . SessionOperator::getFormInput('password1') . '"';
?>
 >
                    </div>

                    <div class="form-group-lg col-xs-6">
                        <label class="text-danger">&nbsp
                            <?php 
echo SessionOperator::getInputErrors("password2");
?>
                        </label>
                        <input type="password" name="password2" class="form-control" id="password2" maxlength="23" placeholder="Repeat password"
                            <?php 
echo 'value = "' . SessionOperator::getFormInput('password2') . '"';
?>
 >
                    </div>
                </div>
                <!-- account details end -->
            </div><hr>

            <div class="col-xs-12">
                <p class="pull-right">
                    By clicking this 'Sign up for AuctionHouse' button, you agree to our <a href="">terms of service</a> and <a href="">privacy policy</a>
                </p>
            </div>

            <div class="form-group col-xs-12" id="sign_up_button">
                <button type="submit" name="signUp" id="signUp" class="btn btn-success btn-lg pull-right">Sign up for AuctionHouse</button>