mentors

mentors Git Source Tree


Root/app/views/projects/add.blade.php

<!doctype html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Mentconnect - Add New Projects</title>
	{{HTML::style('css/mentconnect.css')}}
	{{HTML::style('css/denied.css')}}
	<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css">
</head>
<body>
	<header id="cta" class="background-showcase">
		<div id="nv" class="navbar">
			<div class="container">
				<a class="navbar-brand" href="/">
					<div class="asset logo-white-header">
						{{ HTML::image("images/mentconnect.png", "mentconnect", array("width" => "130px", "height" => "44px")) }}
					</div>
				</a>
				<ul class=" nav navbar-nav pull-right">
					<li class>
						{{HTML::link('projects', 'Projects') }}
					</li>
					<li class="button">
						{{HTML::link('logout', 'Logout') }}
					</li>
				</ul>
			</div>
		</div>
	</header>

	<div id="signup-content">
		{{ Form::open(array('route' => 'projects.store', 'class' => 'form-horizontal')) }}

		<div class="container padded">
			<div class="container">
				<legend><h2>Please complete the form below to submit an open source project</h2>
				<p><small><i><strong>NOTICE :</strong> Please, do not share privately owned projects unless you own them and fully understand that all projects shared within Mentconnect community will be freely used by members for learning at no extra fee. Also do not submit other people's project without their permission to do so. </i></small></p></legend>
			</div>
		
			<div class="row">
				<div class="col-lg-2">
          			
        		</div>

				<div class="col-lg-8">
		
	          			<div class="form-group">
				            <label for="first">Project Name</label>
				            {{Form::text('title', \Input::old('title'), array('class' => 'form-control form-control-bordered', 'tabindex' => '1'))}} <span class="pull-right">{{$errors->first('title')}}</span>
				        </div>
	          			<div class="form-group">
	            
	            			<label for="last">Project Url</label>
	            			{{ Form::text('link', \Input::old('link'), array('class' => 'form-control form-control-bordered', 'tabindex' => '2')) }} <span class="pull-right"> {{$errors->first('link')}}</span>
	          			</div>
	          			<div class="form-group">
	            
	            			<label for="language">Project Language</label>
	            			{{ Form::text('language', \Input::old('language'), array('class' => 'form-control form-control-bordered', 
	            			'tabindex' => '3')) }}<span class="pull-right"> {{$errors->first('language') }}</span>
	          			</div>
	          			
	          			<div class="row" id="signup-bottom-row">
			                {{Form::submit('Add Project',  array('class' => 'btn btn-success btn-large submit-button'))}}
            			</div>
        		</div>
			</div>

			<div class="col-lg-2">
          			
        	</div>	
		</div>
		{{ Form::close() }}
	</div>

	<div id="footer">
		<div id="sub-footer">
			<div class="container">
				<div class="row">
					<div class="col-lg-4">
						<p id="copyright-section">
							Copyright © 2014. Mentconnect Inc. All Rights Reserved.
						</p>
					</div>

					<div class="col-lg-4">
						
					</div>

					<div class="col-lg-4">
						<p id="love">
							Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
						</p>
					</div>
				</div>
			</div>
		</div>
	</div>
</body>
</html>

Archive Download this file

Branches

Number of commits:
Page rendered in 0.11400s using 11 queries.