Beispiel #1
0
<div class="subheader"></div>
<div class="container inner-container">
  <?php 
Section::inject('page_title', 'Notifications');
?>
  <?php 
if (count($notifications->results) > 0) {
    ?>
    <table class="notifications-table table">
      <?php 
    foreach ($notifications->results as $notification) {
        ?>
        <?php 
        echo View::make('notifications.partials.notification')->with('notification', $notification);
        ?>
      <?php 
    }
    ?>
    </table>
    <div class="pagination-wrapper">
      <?php 
    echo $notifications->links();
    ?>
    </div>
  <?php 
} else {
    ?>
    <p><?php 
    echo e(__("r.notifications.index.no_notifications"));
    ?>
</p>
Beispiel #2
0
<?php

Section::inject('page_title', 'My Bids');
?>
<div class="subheader"></div>
<div class="container inner-container">
  <?php 
if ($bids) {
    ?>
    <table class="table my-bid-table">
      <thead>
        <tr>
          <th>Project</th>
          <th>Total Price</th>
          <th>Status</th>
        </tr>
      </thead>
      <tbody>
        <?php 
    foreach ($bids as $bid) {
        ?>
          <tr class="bid bid-<?php 
        echo e(str_replace(' ', '-', strtolower($bid->status)));
        ?>
">
            <td>
              <a href="<?php 
        echo e($bid->submitted_at ? route('bid', array($bid->project->id, $bid->id)) : route('new_bids', array($bid->project->id)));
        ?>
"><?php 
        echo e($bid->project->title);
Beispiel #3
0
<?php

Section::inject('page_title', 'My Projects');
Section::start('inside_header');
?>
  <a class="officer-only toggle-my-all-projects" href="<?php 
echo e(route('projects'));
?>
">everybody's projects</a>
  <a class="btn btn-small btn-success new-project-btn pull-right" href="<?php 
echo e(route('new_projects'));
?>
">
    <i class="icon-plus-sign icon-white"></i>
    new project
  </a>
<?php 
Section::stop();
?>
<div class="subheader"></div>
<div class="container inner-container">
  <?php 
if ($projects) {
    ?>
    <table class="table my-project-table">
      <thead>
        <tr>
          <th class="type"></th>
          <th class="project-title">Project</th>
          <th class="status">Status</th>
          <th class="due">
Beispiel #4
0
Datei: faq.php Projekt: ajb/rfpez
<div class="subheader">
	<?php 
Section::inject('page_title', 'RFP-EZ FAQ');
?>
</div>
<div class="container inner-container">

	<h5>General</h5>

	<div class="question-wrapper well">
		<div class="question">
			Q: What is RFP-EZ?
		</div>
		<div class="answer">
			A: RFP-EZ is a web-based application that is comprised of five different systems, all meant to make it easier for small businesses to sell their services to government buyers, and for contracting officers to buy small dollar value services.
		</div>
	</div>  

	<div class="question-wrapper well">
		<div class="question">
			Q: Are there benefits to buyers and sellers in using RFP-EZ?
		</div>
		<div class="answer">
			A: Yes. We know that buying goods and services for the Government and selling them to the Government can be complicated and intimidating.  That shouldn’t be the case, especially for small dollar value purchases.  RFP-EZ helps streamline the contracting process for both the buyers and sellers.  It represents a unique opportunity for innovative startups to easily access the federal government marketplace and, in turn, enable the Federal government to secure better and less expensive products and services, saving taxpayers money and improving the results delivered. 
		</div>
	</div>

	<div class="question-wrapper well">
		<div class="question">
			Q: Is this a government-wide initiative? 
		</div>
Beispiel #5
0
<div class="subheader"></div>
<div class="container inner-container">
  <?php 
Section::inject('page_title', 'Change Password');
?>
  <form id="change-password-form" class="form-horizontal" action="<?php 
echo e(route('change_password'));
?>
" method="post">
    <div class="control-group">
      <label class="control-label">Old Password</label>
      <div class="controls">
        <input type="password" name="old_password" />
      </div>
    </div>
    <div class="control-group">
      <label class="control-label">New Password</label>
      <div class="controls">
        <input id="new-password-input" type="password" name="new_password" />
      </div>
    </div>
    <div class="control-group">
      <label class="control-label">Confirm New Password</label>
      <div class="controls">
        <input type="password" name="confirm_new_password" />
      </div>
    </div>
    <div class="form-actions">
      <button class="btn btn-primary" type="submit">Submit</button>
    </div>
  </form>
Beispiel #6
0
<div class="subheader"></div>
<div class="container inner-container">
	<?php 
Section::inject('page_title', 'My Account');
?>
	<form action="<?php 
echo e(route('account'));
?>
" method="POST" class="account-form account-form-<?php 
echo e(Auth::user()->vendor ? 'vendor' : 'officer');
?>
">
	  <?php 
if (Auth::user()->vendor) {
    ?>
	    <?php 
    echo View::make('users.account_vendor_fields');
    ?>
	  <?php 
} else {
    ?>
	    <?php 
    echo View::make('users.account_officer_fields');
    ?>
	  <?php 
}
?>
	  <div class="form-actions">
	    <input class="btn btn-primary" type="submit" value="Save Changes" />
	  </div>
	</form>
Beispiel #7
0
<div class="subheader">
  <?php 
Section::inject('page_title', "Page not found");
?>
</div>
<div class="container inner-container">
  <p class="lead"><?php 
echo e(__("r.error.404_content.text"));
?>
</p>
</div>
Beispiel #8
0
<?php

Section::inject('page_title', $bid->project->title);
Section::inject('page_action', 'Show Bid');
?>
<div class="subheader">
  <div class="container">
    <a href="<?php 
echo e(route('project', array($project->id)));
?>
">&larr; Back to project page</a>
  </div>
</div>
<div class="container inner-container">
  <div class="row">
    <div class="span6">
      <?php 
echo View::make('projects.partials.full_sow')->with('project', $project);
?>
    </div>
    <div id="column-my-bid" class="span5 offset1">
      <h4>My Bid
</h4>
      <?php 
echo View::make('bids.partials.bid_details_vendors_view')->with('bid', $bid);
?>
    </div>
  </div>
</div>
Beispiel #9
0
Datei: new.php Projekt: ajb/rfpez
<?php

Section::inject('page_title', 'New Company');
?>
<div class="subheader"></div>
<div class="container inner-container">
	<form id="new-vendor-form" action="<?php 
echo e(route('vendors'));
?>
" method="POST">
	  <?php 
echo View::make('users.account_vendor_fields')->with('vendor', Input::old('vendor'))->with('user', Input::old('user'))->with('services', Input::old('services'))->with('signup', true);
?>
	  <h5>How did you hear about RFP-EZ?</h5>
	  <div class="control-group">
	    <input class="input-xlarge" type="text" name="user[how_hear]" value="" placeholder="optional" />
	  </div>
	  <div class="form-actions">
	    <button class="btn btn-primary" type="submit">Create Profile</button>
	  </div>
	</form>
</div>
Beispiel #10
0
<div class="subheader">
  <?php 
Section::inject('page_title', "{$project->title}");
?>
  <div class="subheader-secondline"><?php 
echo $project->agency;
?>
</div>
</div><!-- subheader -->

<div class="container inner-container inner-container-show-project">
	<p>
		Redirecting to 
		<a class="outbound" href="<?php 
echo $project->external_url;
?>
"><?php 
echo $project->external_url;
?>
</a> 
		...
	</p>
</div>
<script>
	window.location.href = "<?php 
echo $project->external_url;
?>
";
</script>
Beispiel #11
0
Datei: new.php Projekt: ajb/rfpez
<div class="subheader">
  <?php 
Section::inject('page_title', $project->title);
?>
  <?php 
Section::inject('page_action', 'New Bid');
?>
  <?php 
Section::inject('current_page', 'new-bid');
?>
</div>
<div class="container inner-container">
  <div class="row new-bid-page">
    <div class="span6">
      <h5 class="red-header">New Bid</h5>
      <div class="alert alert-success">
        <p>
          <strong>Eligibility:
</strong>
          This project has been set aside for small businesses. 
          In this case, "small" means your business's average annual receipts 
          over the last three years were less than <strong>$<?php 
echo e(trim($project->project_type->threshold, '0.'));
?>
 million</strong>.
          Businesses that exceed this threshold do not qualify for this project.
        </p>
        <p class="eligibility-unsure">
          Unsure if you qualify?
          <a target="_blank" href="http://www.sba.gov/content/determining-business-size">Read more about determining business size</a>
          or <a target="_blank" href="http://www.sba.gov/size-standards-tool">try the SBA's Size Standards Tool</a>. 
Beispiel #12
0
<?php

Section::inject('page_title', 'Change Email');
?>

<div class="subheader"></div>

<div class="container inner-container">
  <form class="form-horizontal" action="<?php 
echo e(route('change_email'));
?>
" method="post">
    <div class="control-group">
      <label class="control-label">New Email</label>
      <div class="controls">
        <input type="text" name="new_email" value="<?php 
echo e(Input::old('new_email'));
?>
" />
      </div>
    </div>
    <div class="control-group">
      <label class="control-label">Verify Password</label>
      <div class="controls">
        <input type="password" name="password" />
      </div>
    </div>
    <div class="form-actions">
      <button class="btn btn-primary" type="submit">Submit</button>
    </div>
  </form>
Beispiel #13
0
<?php

if ($finish_signup) {
    ?>
  <?php 
    Section::inject('page_title', "Create password for {$user->email}");
} else {
    ?>
  <?php 
    Section::inject('page_title', "Reset password for {$user->email}");
}
?>
<div class="subheader"></div>
<div class="container inner-container">
  <form id="reset-password-form" class="form-horizontal" action="<?php 
echo e(route('reset_password', array($user->reset_password_token)));
?>
" method="POST">
    <div class="control-group">
      <label class="control-label">New Password</label>
      <div class="controls">
        <input type="password" name="password" />
      </div>
    </div>
    <div class="form-actions">
      <button class="btn btn-primary" type="submit">Submit</button>
    </div>
  </form>
</div>
Beispiel #14
0
<?php

Section::inject('page_title', 'Sign In');
?>
<div class="subheader"></div>
<div class="container inner-container">
  <form class="form-horizontal" action="<?php 
echo e(route('signin'));
?>
" method="POST">
    <input type="hidden" name="redirect_to" value="<?php 
echo e(Input::old('redirect_to') ?: Session::get('redirect_to'));
?>
" />
    <div class="control-group">
      <label class="control-label">Email</label>
      <div class="controls">
        <input type="text" name="email" value="<?php 
echo e(Input::old('email'));
?>
" data-onload-focus="data-onload-focus" />
      </div>
    </div>
    <div class="control-group">
      <label class="control-label">Password</label>
      <div class="controls">
        <input type="password" name="password" />
        <a class="forgot" href="<?php 
echo e(route('forgot_password'));
?>
">Forgot Password?</a>
Beispiel #15
0
<div class="subheader"></div>
<div class="container inner-container">
	<?php 
Section::inject('page_title', 'Forgot Password');
?>
	<form class="form-horizontal" action="<?php 
echo e(route('forgot_password'));
?>
" method="POST">
	  <div class="control-group">
	    <label class="control-label">Email address</label>
	    <div class="controls">
	      <input type="text" name="email" value="<?php 
echo e(Input::old('email'));
?>
" />
	    </div>
	  </div>
	  <div class="form-actions">
	    <button class="btn btn-primary" type="submit">Submit</button>
	  </div>
	</form>
</div>
Beispiel #16
0
<?php

Section::inject('page_title', 'Vendors');
Section::inject('current_page', 'vendors-index');
?>
<div class="subheader"></div>
<div class="container inner-container">
  <div class="vendors-wrapper">
    <div class="vendors">
      <?php 
foreach ($vendors as $vendor) {
    ?>
        <div class="media vendor well">
          <div class="company-name pull-left">
            <a href="<?php 
    echo e(route('vendor', array($vendor->vendor_id)));
    ?>
"><?php 
    echo e($vendor->company_name);
    ?>
</a>
          </div>
          <div class="ballpark-price pull-right"><?php 
    echo e($vendor->ballpark_price_display());
    ?>
</div>
          <div class="clearfix"></div>
          <div class="vendor-image-preview-frame">
            <a href="<?php 
    echo e(route('vendor', array($vendor->vendor_id)));
    ?>
Beispiel #17
0
<?php

Section::inject('page_title', 'Reports');
?>
<div class="subheader"></div>
<div class="container inner-container">
  <h1><?php 
echo e($total_signups);
?>
 new businesses have signed up, <?php 
echo e($total_new_to_contracting);
?>
 are probably new to gov contracting</h1>
  <div id="signups-line-chart"></div>
  <hr />
  <div class="row">
    <div class="span-5">
      <h1>Projects average <?php 
echo e(round($avg_bids_per_project, 1));
?>
 bids</h1>
      <div id="num-bids-chart"></div>
    </div>
    <div class="span-5">
      <h1>Bids average $<?php 
echo e(round($avg_price_total));
?>
</h1>
      <div id="price-bids-chart"></div>
    </div>
  </div>
Beispiel #18
0
    ?>
  <?php 
} else {
    ?>
    <div class="subheader-secondline"><?php 
    echo $project->agency;
    ?>
</div>
  <?php 
}
?>
</div><!-- subheader -->

<div class="container inner-container inner-container-show-project">
  <?php 
Section::inject('active_subnav', "view");
?>
  <div class="row">
    <div class="span6">

      <?php 
echo View::make('projects.partials.full_sow')->with('project', $project);
?>

      <?php 
if ($project->source == Project::SOURCE_FBO) {
    ?>
        <a class="fbo-disclaimer hide-show-toggler" data-target="fbo-disclaimer-text" href="#fbo-disclaimer-text">Disclaimer</a>
        <p class="fbo-disclaimer" id="fbo-disclaimer-text">
          <?php 
    echo __("r.projects.show.fbo_disclaimer");
Beispiel #19
0
Datei: new.php Projekt: ajb/rfpez
<?php

Section::inject('page_title', 'New Officer');
?>
<div class="subheader"></div>
<div class="container inner-container">
  <form id="new-officer-form" action="<?php 
echo e(route('officers'));
?>
" method="post">
    <?php 
$user = Input::get('user');
?>
    <?php 
$officer = Input::get('officer');
?>
    <?php 
echo View::make('users.account_officer_fields')->with('officer', Input::old('officer'))->with('user', Input::old('user'))->with('signup', true);
?>
    <div class="control-group">
      <label>How did you hear about RFP-EZ?</label>
      <input class="input-xxlarge" type="text" name="user[how_hear]" value="" />
    </div>
    <div>
      <button class="btn btn-primary" type="submit">Submit</button>
    </div>
  </form>
</div>
Beispiel #20
0
<div class="subheader">
  <?php 
Section::inject('page_title', $project->title);
?>
  <?php 
Section::inject('page_action', "Review Bids");
?>
  <?php 
Section::inject('active_subnav', 'review_bids');
?>
  <?php 
Section::inject('no_page_header', true);
?>
  <?php 
Section::inject('current_page', 'bid-review');
?>
  <?php 
echo View::make('projects.partials.toolbar')->with('project', $project);
?>
  <?php 
echo View::make('bids.partials.dismiss_modal');
?>
  <?php 
echo View::make('bids.partials.award_modal')->with('project', $project);
?>
</div>
<div class="container inner-container">
  <?php 
if ($project->source() == Project::SOURCE_NATIVE) {
    ?>
    <div class="well">
Beispiel #21
0
<div class="subheader">
  <?php 
Section::inject('page_title', $project->title);
?>
  <?php 
Section::inject('page_action', "Select a Template");
?>
  <?php 
Section::inject('active_subnav', 'create');
?>
  <?php 
Section::inject('no_page_header', true);
?>
  <?php 
echo View::make('projects.partials.toolbar')->with('project', $project);
?>
</div>
<div class="container inner-container">
  <?php 
if ($templates) {
    ?>
    <h5><?php 
    echo __("r.projects.template.template_header");
    ?>
</h5>
    <p><?php 
    echo __("r.projects.template.template_text");
    ?>
</p>
    <ul class="templates-list">
      <?php 
Beispiel #22
0
<div class="subheader">
  <?php 
Section::inject('page_title', 'RFP-EZ For Government');
?>
</div>
<div class="container inner-container">
  <p class="lead">
    Make small dollar procurements better for both government and businesses.
  </p>
  <p class="lead">
    RFP-EZ was created by the <a href="http://wh.gov/innovationfellows" target="_blank">Presidential Innovation Fellows</a> to:
  </p>
  <ol class="lead-list extra-bottom-padding">
    <li>Make it easier for new small businesses to start contracting,</li>
    <li>Simplify the development of statements of work,</li>
    <li>Improve agency access to information about small businesses,</li>
    <li>Enable small businesses to submit proposals electronically,</li>
    <li>Help officers evaluate proposals more quickly,</li>
    <li>Improve how information (including prices paid by federal agencies) is captured and stored.</li>
  </ol>
  <p class="lead">
    Ready to try RFP-EZ for yourself?&nbsp;
    <a class="btn btn-large btn-warning" href="<?php 
echo e(route('new_officers'));
?>
">Sign up now
</a>
    or email <a href="mailto:rfpez@gsa.gov">rfpez@gsa.gov</a> for more info.
  </p>
  <hr />
  <blockquote class="blum">