Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Photogram project PHP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Raghav
Photogram project PHP
Commits
c87f64b6
Commit
c87f64b6
authored
1 month ago
by
Raghav
Browse files
Options
Downloads
Patches
Plain Diff
Added username and phone no. in signup
parent
1097492e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
_templates/signup-content.php
+13
-3
13 additions, 3 deletions
_templates/signup-content.php
assets/dist/css/signup.css
+16
-0
16 additions, 0 deletions
assets/dist/css/signup.css
with
29 additions
and
3 deletions
_templates/signup-content.php
+
13
−
3
View file @
c87f64b6
<main
class=
"form-signup w-100 m-auto"
>
<main
class=
"form-signup w-100 m-auto"
>
<form
action=
"/photogram-project-php/
signup
.php"
method=
"post"
>
<form
action=
"/photogram-project-php/
test
.php"
method=
"post"
>
<img
class=
"mb-4 center"
src=
"/photogram-project-php/assets/brand/devyani_logo_edit_light copy.svg"
alt=
""
width=
"72"
height=
"77"
>
<img
class=
"mb-4 center"
src=
"/photogram-project-php/assets/brand/devyani_logo_edit_light copy.svg"
alt=
""
width=
"72"
height=
"77"
>
<h1
class=
"h3 mb-3 fw-normal"
>
Please sign
in
</h1>
<h1
class=
"h3 mb-3 fw-normal"
>
Please sign
up
</h1>
<div
class=
"form-floating"
>
<input
name=
"username"
type=
"text"
class=
"form-control"
id=
"floatingInput"
placeholder=
"Username"
>
<label
for=
"floatingInput"
>
Username
</label>
</div>
<div
class=
"form-floating"
>
<div
class=
"form-floating"
>
<input
name=
"email"
type=
"email"
class=
"form-control"
id=
"floatingInput"
placeholder=
"name@example.com"
>
<input
name=
"email"
type=
"email"
class=
"form-control"
id=
"floatingInput"
placeholder=
"name@example.com"
>
<label
for=
"floatingInput"
>
Email address
</label>
<label
for=
"floatingInput"
>
Email address
</label>
...
@@ -11,6 +16,11 @@
...
@@ -11,6 +16,11 @@
<input
name=
"password"
type=
"password"
class=
"form-control"
id=
"floatingPassword"
placeholder=
"Password"
>
<input
name=
"password"
type=
"password"
class=
"form-control"
id=
"floatingPassword"
placeholder=
"Password"
>
<label
for=
"floatingPassword"
>
Password
</label>
<label
for=
"floatingPassword"
>
Password
</label>
</div>
</div>
<div
class=
"form-floating"
>
<input
name=
"phone"
type=
"text"
class=
"form-control"
id=
"floatingInputphone"
placeholder=
"Phone number"
>
<label
for=
"floatingInputphone"
>
Phone number
</label>
</div>
<div
class=
"form-check text-start my-3"
>
<div
class=
"form-check text-start my-3"
>
<input
class=
"form-check-input"
type=
"checkbox"
value=
"remember-me"
id=
"flexCheckDefault"
>
<input
class=
"form-check-input"
type=
"checkbox"
value=
"remember-me"
id=
"flexCheckDefault"
>
...
@@ -18,7 +28,7 @@
...
@@ -18,7 +28,7 @@
Remember me
Remember me
</label>
</label>
</div>
</div>
<button
class=
"hvr-grow-shadow btn btn-primary w-100 py-2 "
type=
"submit"
>
Sign
in
</button>
<button
class=
"hvr-grow-shadow btn btn-primary w-100 py-2 "
type=
"submit"
>
Sign
Up
</button>
</form>
</form>
</main>
</main>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
assets/dist/css/signup.css
+
16
−
0
View file @
c87f64b6
...
@@ -16,12 +16,28 @@ body {
...
@@ -16,12 +16,28 @@ body {
margin-bottom
:
-1px
;
margin-bottom
:
-1px
;
border-bottom-right-radius
:
0
;
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
;
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
}
.form-signup
input
[
type
=
"password"
]
{
.form-signup
input
[
type
=
"password"
]
{
margin-bottom
:
-1px
;
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
;
}
.form-signup
input
[
type
=
"text"
]
{
margin-bottom
:
-1px
;
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
;
}
.form-signup
input
[
id
=
"floatingInputphone"
]
{
margin-bottom
:
10px
;
margin-bottom
:
10px
;
border-top-left-radius
:
0
;
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
border-top-right-radius
:
0
;
border-bottom-right-radius
:
5px
;
border-bottom-left-radius
:
5px
;
}
}
.center
{
.center
{
display
:
block
;
display
:
block
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment