Skip to content

Instantly share code, notes, and snippets.

View mehyar500's full-sized avatar

Mehyar Swelim mehyar500

View GitHub Profile
<form action="http://example.com/subscribe" method="POST" accept-charset="utf-8">
<input class="form-control input-lg" type="text" name="name" required id="name" placeholder="Name"/>
<br/>
<input class="form-control input-lg" type="email" name="email" required id="email" placeholder="Email" pattern="[a-zA-Z0-9._\-]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,4}"/>
<br/>
<input class="form-control input-lg" type="tel" name="MobilePhone" required id="MobilePhone" placeholder="Phone"/>
</p>
<p>
<input class="form-control input-lg" type="text" name="WorkshopDate" id="WorkshopDate" placeholder="Click Here To Select a Sunday. (Date Format : Date/Month/Year)" required readonly="true"/>
<br/>
Mohammad-Mehyar Alswelim
============
------------------- ----------------------------
240 bay 13th st Email: mehyar500@gmail.com
Brooklyn, NY Github: github.com/mehyar500
Cell: 646-932-9000
------------------- ----------------------------
Education

Keybase proof

I hereby claim:

  • I am mehyar500 on github.
  • I am zer0hot (https://keybase.io/zer0hot) on keybase.
  • I have a public key ASBOIAki6bsL42FhqPnwRYUjCRUBDai9C7Ii2lx-yq3XIgo

To claim this, I am signing this object:

@mehyar500
mehyar500 / Doaa-1.rb
Created October 8, 2016 03:18
null created by mehyar500 - https://repl.it/Doaa/1
#Ruby
puts ("Please Enter Your First Name")
FirstName = gets.chomp!
puts ("Please Enter Your Last Name")
LastName = gets.chomp!
puts ("Please Enter Your City")
City = gets.chomp!
puts (" Hello " + FirstName + LastName + " from " + City)
@mehyar500
mehyar500 / Doaa-0.rb
Created October 8, 2016 03:14
null created by mehyar500 - https://repl.it/Doaa/0
puts("Hello world!")